c++循环创建有规则的名字(例如person0-person100)的空文件夹

直接上代码:

#include  

#include  
#include  
#include;
using namespace std;

int main()
{

for (int i = 0; i <= 499; i++)
{
string path = "D:\\ruanjian\\person" + std::to_string(i);
cout << path;
path = "md " + path;
system(path.c_str());
}

return 0;
}

你可能感兴趣的:(c++循环创建有规则的名字(例如person0-person100)的空文件夹)