我想编写一个代码来返回超过 6 个月的文件的数量(计数)。
我有下面的脚本,它返回所有文件
任何帮助将非常感激
下面的代码
// check the number of file in the CPS directory on S drive
private void btnCheck_Click(object sender, EventArgs e)
{
{
listBox1.Items.Clear();
{
}
string[] files = System.IO.Directory.GetFiles(@"S:\CPS Papers\"); // @"S:\CPS Papers\" C:\test\
this.listBox1.Items.AddRange(files);
textBox1.Text = listBox1.Items.Count.ToString();
{
}
}
}