VC++创建指定路径的一系列文件夹
方法很简单,就是简单的调用 PathFileExists()和CreateDirectory()函数,具体过程如下:
/***********生成指定路径的文件夹**********/
CString strPath = "G://Speech//Text//yuyin//Store";//此处可随意定义,但格式必须与所示一致,会依次创建所有的,如果已经创建好了,则不创建
CString strWPath = strPath;
CString strTemp;
if(!PathFileExists(strPath))//文件夹不存在则创建
{
strPath.TrimLeft(strPath.Left(3));
int i = strPath.Find("//");
if(i>0)
{
strTemp = strWPath.Left(3) + strPath.Left(i);
}
else
{
strTemp = strWPath;
}
strPath.TrimLeft(strPath.Left(i));
if(!PathFileExists(strTemp))
CreateDirectory(strTemp,NULL);
while(strPath.Find("//") == 0)
{
strPath.TrimLeft(strPath.Left(1));
int j = strPath.Find("//");
if(j > 0)
{
strTemp = strTemp + "//" + strPath.Left(j);
strPath.TrimLeft(strPath.Left(j));
}
else
strTemp = strTemp + "//" + strPath;
if(!PathFileExists(strTemp))
CreateDirectory(strTemp, NULL);
}
}
作者:pamchen