摘要:
/*判断一个路径是否是已存在的目录*/ bool IsDirectory(const std::wstring& pstrPath) { DWORD dw = GetFileAttributes(pstrPath.c_str()); if (dw == INVALID_FILE_ATTRIBUTES) { return false; } return (dw & FILE_ATTRIBUTE_DI 阅读全文
posted @ 2019-11-12 14:37
烟波--钓徒
阅读(856)
评论(0)
推荐(0)

浙公网安备 33010602011771号