如果获取文件夹属性?
不知道你用的什么语言哈
我用的C#实现的
首先引入命名空间using System。IO;
建立一个openFileDialog1用于打开文件;
private void button1_Click(object sender, System。 EventArgs e)
{if(this。openFileDialog1。ShowDialog()==DialogResult。OK)
{this。textBox1。Text=this。 openFileDialog1。FileName;
}
}
private void button2_Click(object sender, System...全部
不知道你用的什么语言哈
我用的C#实现的
首先引入命名空间using System。IO;
建立一个openFileDialog1用于打开文件;
private void button1_Click(object sender, System。
EventArgs e)
{if(this。openFileDialog1。ShowDialog()==DialogResult。OK)
{this。textBox1。Text=this。
openFileDialog1。FileName;
}
}
private void button2_Click(object sender, System。EventArgs e)
{FileAttributes MyAttributes=File。
GetAttributes(this。textBox1。Text);
string MyFileType=MyAttributes。ToString();
if(MyFileType。LastIndexOf("ReadOnly")!=-1)
{this。
checkBox1。Checked=true;//是否只读文件
}
if(MyFileType。LastIndexOf("System")!=-1)
{this。checkBox2。Checked=true;//是否系统文件
}
if(MyFileType。
LastIndexOf("Hidden")!=-1)
{this。checkBox3。Checked=true;//是否隐藏文件
}
if(MyFileType。LastIndexOf("Archive")!=-1)
{this。
checkBox4。Checked=true;//是否归档文件
}
if(MyFileType。LastIndexOf("Temporary")!=-1)
{this。checkBox5。
Checked=true;//是否临时文件
}。收起