标签:
RemoveDirectoryA(
__in LPCSTR lpPathName
);
PathFileExistsA(LPCSTR pszPath);
CreateDirectoryA(strDirectoryName.c_str(), NULL);
example:
//wPathMkdir("D:\\yecyTest");
int result = wPathFileExist("D:\\yecyTest");
if (result == 0)
{
printf("yecy::fail creat directory");
}
::RemoveDirectoryA("D:\\yecyTest");
windows目录create、isExsit、remove
标签:
原文地址:http://www.cnblogs.com/hqu-ye/p/4331729.html