怎么用c#调文件的隐藏
怎么用c#调文件的隐藏 --------------------编程问答-------------------- 说明白点,要干嘛 --------------------编程问答-------------------- --------------------编程问答-------------------- 想把文件设置成隐藏 --------------------编程问答--------------------String filePath = @"d:\x.txt";
File.SetAttributes(filePath, File.GetAttributes(filePath) | FileAttributes.Hidden); --------------------编程问答--------------------
对头一句话
补充:.NET技术 , .NET Framework