PathRemoveFileSpec 函數的作用:將路徑末尾的文件名和反斜杠去掉(與GetModuleFileName配合)
阿新 • • 發佈:2018-04-07
自身 wapi post 完整 span tails keyword div bar
PathRemoveFileSpec 函數的作用:將路徑末尾的文件名和反斜杠去掉。
例如,我們想獲取EXE文件自身所在的文件夾,可以這樣:
[cpp] view plain copy
- #include <stdio.h>
- #include <Shlwapi.h>
- #pragma comment(lib,"shlwapi.lib")
- int main()
- {
- TCHAR szPath[MAX_PATH];
- //獲取應用程序或者DLL的完整路徑
- ::GetModuleFileName(NULL, szPath, MAX_PATH);
- //去掉路徑末尾的文件名和反斜杠
- ::PathRemoveFileSpec(szPath);
- printf("%ls\n", szPath);
- return 0;
- }
https://blog.csdn.net/hellokandy/article/details/53097782
PathRemoveFileSpec 函數的作用:將路徑末尾的文件名和反斜杠去掉(與GetModuleFileName配合)