判断路径是目录还是文件

//strPath为需要判断的路径

if ( GetFileAttributes(strPath) & FILE_ATTRIBUTE_DIRECTORY )
{
    MessageBox("Is a Directory");
}
else
{
    MessageBox("Is not a Directory");
}

 

还可以用以下函数

BOOL PathIsDirectory(          LPCTSTR pszPath
);
Verifies that a path is a valid directory。

 

转载于:https://www.cnblogs.com/Lthis/p/4237763.html

你可能感兴趣的:(判断路径是目录还是文件)