파일 정보 알아내는 API

Posted by 빵빵빵
2009/09/23 17:40 전산(컴퓨터)/Mobile-CE&PPC



  1. // version.hpp  
  2.   
  3. #ifndef VERSION  
  4. #define VERSION  
  5.   
  6. #pragma warning(disable : 4505 4710)  
  7. #pragma comment(lib, "version.lib")  
  8.   
  9. #include <string>  
  10. #include <sstream>  
  11. #include <iomanip>  
  12. #include <exception>  
  13. #include <new>  
  14. #include <windows.h>  
  15.   
  16. namespace version_nmsp  
  17. {  
  18.   struct language  
  19.   {  
  20.     WORD language_;  
  21.     WORD code_page_;  
  22.   
  23.     language()  
  24.     {  
  25.       language_  = 0;  
  26.       code_page_ = 0;  
  27.     }  
  28.   };  
  29. }  
  30.   
  31. class version  
  32. {  
  33. public:  
  34.   version()  
  35.   {  
  36.     // Get application name  
  37.     TCHAR buf[MAX_PATH] = "";  
  38.   
  39.     if(::GetModuleFileName(0, buf, sizeof(buf)))  
  40.     {  
  41.       std::string app_name = buf;  
  42.       app_name             = app_name.substr(app_name.rfind("\\") + 1);  
  43.   
  44.       // Get version info  
  45.       DWORD h = 0;  
  46.   
  47.       DWORD resource_size = ::GetFileVersionInfoSize(const_cast<char*>(app_name.c_str()), &h);  
  48.       if(resource_size)  
  49.       {  
  50.         resource_data_ = new unsigned char[resource_size];  
  51.         if(resource_data_)  
  52.         {  
  53.           if(::GetFileVersionInfo(const_cast<char*>(app_name.c_str()),  
  54.                                   0,  
  55.                                   resource_size,  
  56.                                   static_cast<LPVOID>(resource_data_)) != FALSE)  
  57.           {  
  58.             UINT size = 0;  
  59.   
  60.             // Get language information  
  61.             if(::VerQueryValue(static_cast<LPVOID>(resource_data_),  
  62.                                "\\VarFileInfo\\Translation",  
  63.                                reinterpret_cast<LPVOID*>(&language_information_),  
  64.                                &size) == FALSE)  
  65.               throw std::exception("Requested localized version information not available");  
  66.           }  
  67.           else  
  68.           {  
  69.             std::stringstream exception;  
  70.             exception << "Could not get version information (Windows error: " << ::GetLastError() << ")";  
  71.             throw std::exception(exception.str().c_str());  
  72.           }  
  73.         }  
  74.         else  
  75.           throw std::bad_alloc();  
  76.       }  
  77.       else  
  78.       {  
  79.         std::stringstream exception;  
  80.         exception << "No version information found (Windows error: " << ::GetLastError() << ")";  
  81.         throw std::exception(exception.str().c_str());  
  82.       }  
  83.     }  
  84.     else  
  85.       throw std::exception("Could not get application name");  
  86.   }  
  87.   
  88.   ~version() { delete [] resource_data_; }  
  89.   std::string get_product_name() const { return get_value("ProductName"); }  
  90.   std::string get_internal_name() const { return get_value("InternalName"); }  
  91.   std::string get_product_version() const { return get_value("ProductVersion"); }  
  92.   std::string get_special_build() const { return get_value("SpecialBuild"); }  
  93.   std::string get_private_build() const { return get_value("PrivateBuild"); }  
  94.   std::string get_copyright() const { return get_value("LegalCopyright"); }  
  95.   std::string get_trademarks() const { return get_value("LegalTrademarks"); }  
  96.   std::string get_comments() const { return get_value("Comments"); }  
  97.   std::string get_company_name() const { return get_value("CompanyName"); }  
  98.   std::string get_file_version() const { return get_value("FileVersion"); }  
  99.   std::string get_file_description() const { return get_value("FileDescription"); }  
  100.   
  101. private:  
  102.   unsigned char          *resource_data_;  
  103.   version_nmsp::language *language_information_;  
  104.   
  105.   std::string get_value(const std::string &key) const  
  106.   {  
  107.     if(resource_data_)  
  108.     {  
  109.       UINT              size   = 0;  
  110.       std::stringstream t;  
  111.       LPVOID            value  = 0;  
  112.   
  113.       // <FONT style="BACKGROUND-COLOR: #ffff00; COLOR: #000000; FONT-SIZE: 120%; FONT-WEIGHT: bold" id=altools-findtxt>Build query</FONT> string  
  114.       t << "\\StringFileInfo\\" << std::setw(4) << std::setfill('0') << std::hex  
  115.         << language_information_->language_ << std::setw(4) << std::hex  
  116.         << language_information_->code_page_ << "\\" << key;  
  117.   
  118.       if(::VerQueryValue(static_cast<LPVOID>(resource_data_),  
  119.                          const_cast<LPTSTR>(t.str().c_str()),  
  120.                          static_cast<LPVOID*>(&value),  
  121.                          &size) != FALSE)  
  122.         return static_cast<LPTSTR>(value);  
  123.     }  
  124.   
  125.     return "";  
  126.   }  
  127. };  
  128.   
  129. #endif  



예제

  1. #include <iostream>  
  2. #include <version.hpp>  
  3. #include <conio.h>  
  4.   
  5. int main()  
  6. {  
  7.   try  
  8.   {  
  9.     version v;  
  10.     std::cout << v.get_product_name() << std::endl;  
  11.   }  
  12.   catch(const std::exception& e)  
  13.   {  
  14.     std::cerr << e.what() << std::endl;  
  15.   }  
  16.   
  17.   _getch();  
  18.   
  19.   return 0;  
  20. }  


출처 : http://www.codeguru.com/forum/showthread.php?t=318655

2009/09/23 17:40 2009/09/23 17:40

이 글에는 트랙백을 보낼 수 없습니다