我有目录
中的文件列表example
aa_11.csv
aa_22.csv
我想要做的是按修改日期查找最旧的文件,并将其复制为名称" final.csv"
先谢谢
答案 0 :(得分:0)
从相关目录运行单行:
#include "stdafx.h"
#include "iostream"
#include "string"
using namespace System;
using namespace std;
class gate
{
public:
enum mod {single,local,global} type;
}gatearry[9];
int main()
{
int i,x=0;
string d;
for(i=0;i<9;i++)
{
cout<<"\n input gate type"<<i<<"\n";
cin>>d;
if (d=="single")
gatearry[i].type=gate::single;
else if(d=="local")
gatearry[i].type=gate::local;
else if(d=="global")
gatearry[i].type=gate::global;
if(gatearry[i].type==gate::global)
x++;
cout<<"\n"<<gatearry[i].type;
}
cout<<"\n"<<x;
return 0;
}
(注意后面的刻度,不是撇号)