C#如何设置文件隐藏不见?代码如下
FileInfo info = new FileInfo(FilePath); if (info.Exists) { info.Attributes = FileAttributes.Hidden; }