创建多路径文件夹
Posted judes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建多路径文件夹相关的知识,希望对你有一定的参考价值。
BOOL CreateMultiDirs(CString xFilePath) { int xFlag=xFilePath.Find(_T("\\")); CString s; for(int i=0;i<256;i++) { xFlag=xFilePath.Find(_T("\\"),xFlag+1); if(xFlag>3) { s=xFilePath.Left(xFlag); if (!PathFileExists(xFilePath)) { CreateDirectory(s,0); } } if(xFlag<0) return TRUE; } return FALSE; }
以上是关于创建多路径文件夹的主要内容,如果未能解决你的问题,请参考以下文章