标签:substr int ++ name size += 文件路径 c_str cto
string str;//文件路径
int pos=str.find_last_of("/");
str=str.substr(0,pos);
vector<string > filenames;
while(_access(str.c_str(),0)==-1)
{
pos=str.find_last_of("/");
string name=str.substr(pos,str.length()-1);
filenames.push_back(name);
str=str.substr(0,pos);
}
for(int f=filenames.size()-1;f>0;f--)
{
str+=filenames[f];
mkdir(str.c_str());
}
标签:substr int ++ name size += 文件路径 c_str cto
原文地址:https://www.cnblogs.com/ceerqingting/p/13292502.html