GetModuleFileNameA函数与GetCurrentDirectoryA函数

Posted Avin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GetModuleFileNameA函数与GetCurrentDirectoryA函数相关的知识,希望对你有一定的参考价值。

cited from: http://cooker.iteye.com/blog/657706

 

头文件#include <windows.h>  

 

C++代码  技术分享
  1. char moduleFileName[MAX_PATH];  
  2. GetModuleFileNameA(0, moduleFileName, MAX_PATH);  

取得的路径为:c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects 
\Test\debug\Test.exe 

C++代码  技术分享
  1. char moduleFileName[MAX_PATH];  
  2. GetModuleFileNameA(NULL, moduleFileName, MAX_PATH);  
  3. std::string workingFolder(moduleFileName);  
  4. size_t pos = workingFolder.find_last_of("\\");  
  5. workingFolder = workingFolder.substr(0, pos+1);  
  6. std::cout<<workingFolder<<std::endl;  

取得的路径为:c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects 
\Test\debug\ 

C++代码  技术分享
  1. char result[MAX_PATH];  
  2. GetCurrentDirectoryA(MAX_PATH, result);  

取得的路径为:c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects 
\Test\Test








以上是关于GetModuleFileNameA函数与GetCurrentDirectoryA函数的主要内容,如果未能解决你的问题,请参考以下文章

要从键盘读入含有空格字符的字符串,应该用啥函数?A.getc() B.gets() C.getchar() D.scanf

如何编写getLine函数使用getc

如何为单字符 i/o 定义 getc 和 putc 函数,并提供适当的 i/o 操作缓冲 MIPS

GetModuleFileName函数第2个参数是LPWSTR 类型,结果读出来的路径中间总有一个0

getc_unlocked,putc_unlocked,getchar_unlocked,putchar_unlocked

C语言中的标准函数都有哪些