如果这个问题已经被问过,我很抱歉,但我是 C# 编程的新手,我正在努力解决我遇到的日期问题。我编写了一个程序,该程序查找在我选择的两个不同日期时间之间创建的文件,并检查属性 {select} file: 写入但无法想到日期时间:(
private bool Check_Attributes(FileInfo finfo)
{
//check Attributes
FileAttributes Fattributes = new FileAttributes();
Fattributes = finfo.Attributes;
SearchSetAttrib = new List<FileAttributes>();
if (chkattributes.Checked == true)
{
SearchSetAttrib.Clear();
if (chkreadonly.Checked == true)
SearchSetAttrib.Add(FileAttributes.ReadOnly);
if (chksystem.Checked == true)
SearchSetAttrib.Add(FileAttributes.System);
if (chkhidden.Checked == true)
SearchSetAttrib.Add(FileAttributes.Hidden);
if (chkNormal.Checked == true)
SearchSetAttrib.Add(FileAttributes.Normal);
if (chkArchiv.Checked == true)
SearchSetAttrib.Add(FileAttributes.Archive);
foreach (FileAttributes FileAtt in SearchSetAttrib)
{
if ((Fattributes & (FileAtt)) != 0)
ReAttrib = true;
else
return ReAttrib = false;
}
}
else
ReAttrib = true;
return ReAttrib;
}