【涨函数】PathRemoveFileSpec函数

PathRemoveFileSpec函数的作用是将路径末尾的文件名和反斜杠去掉

例如,我们想获取EXE文件自身所在的文件夹,可以这样写:

#include <stdio.h>
#include <Shlwapi.h>

int main(int argc, char *argv[])
{
    char self[MAX_PATH];

    GetModuleFileName(NULL, self, MAX_PATH);
    PathRemoveFileSpec(self);
    printf("%s\n", self);

    return 0;
}



参考链接:http://msdn.microsoft.com/en-us/library/windows/desktop/bb773748%28v=vs.85%29.aspx


【摘自】http://demon.tw/programming/pathremovefilespec-function.html


你可能感兴趣的:(【涨函数】PathRemoveFileSpec函数)