大家好,又见面了,我是你们的朋友全栈君。
判断文件夹是否存在
关键点
GetFileAttributes
The GetFileAttributes function retrieves attributes for a specified file or directory.
This function retrieves a set of FAT-style attribute information. The GetFileAttributesEx function can obtain other sets of file or directory attribute information.
DWORD GetFileAttributes(
LPCTSTR lpFileName // name of file or directory
);
实现过程
BOOL DirectoryExists(CString DirectoryPath)
{
if (GetFileAttributes(DirectoryPath) == FILE_ATTRIBUTE_DIRECTORY)
return TRUE;
else
return FALSE;
} |
图
备注
相关链接
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/155100.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...