Windows API一日一练(52)GetCurrentDirectory和

系统 1975 0
在开发软件里,常常碰到要读取当前目录下的配置参数文件,或者打开当前目录下别的程序来运行,那么就需要获取当前进程的目录位置,这就需要使用函数 GetCurrentDirectory 获取当前进程所有在的目录。同时也可以使用 SetCurrentDirectory 函数来改变进程的当前目录。
 
函数 GetCurrentDirectory SetCurrentDirectory 声明如下:
 
WINBASEAPI
DWORD
WINAPI
GetCurrentDirectoryA(
    __in DWORD nBufferLength,
    __out_ecount_part_opt(nBufferLength, return + 1) LPSTR lpBuffer
    );
WINBASEAPI
DWORD
WINAPI
GetCurrentDirectoryW(
    __in DWORD nBufferLength,
    __out_ecount_part_opt(nBufferLength, return + 1) LPWSTR lpBuffer
    );
#ifdef UNICODE
#define GetCurrentDirectory GetCurrentDirectoryW
#else
#define GetCurrentDirectory GetCurrentDirectoryA
#endif // !UNICODE
 
WINBASEAPI
BOOL
WINAPI
SetCurrentDirectoryA(
    __in LPCSTR lpPathName
    );
WINBASEAPI
BOOL
WINAPI
SetCurrentDirectoryW(
    __in LPCWSTR lpPathName
    );
#ifdef UNICODE
#define SetCurrentDirectory SetCurrentDirectoryW
#else
#define SetCurrentDirectory SetCurrentDirectoryA
#endif // !UNICODE
 
nBufferLength 是缓冲区的大小。
lpBuffer 是接收目录的缓冲区指针。
lpPathName 是设置的目录。
 
调用函数的例子如下:
#001  // 获取或者改变当前目录路径。
#002  // 蔡军生  2007/10/17 QQ:9073204 深圳
#003  void GetCurDir(void)
#004  {
#005         //
#006         TCHAR szBuf[MAX_PATH];
#007         ZeroMemory(szBuf,MAX_PATH);
#008         if (GetCurrentDirectory(MAX_PATH,szBuf) > 0)
#009         {
#010               // 获取进程目录成功。
#011               OutputDebugString(szBuf);
#012         }
#013         else
#014         {
#015               // 改变当前目录位置。
#016               SetCurrentDirectory(_T("C:\\"));
#017         }
#018 
#019         OutputDebugString(_T("\r\n"));          
#020  }
#021 
 
 

Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1829984


Windows API一日一练(52)GetCurrentDirectory和SetCurrentDirectory函数


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论