检查文件是否在C#中隐藏

要检索文件的属性,请使用FileAttributes枚举。它具有各种成员,如压缩,目录,隐藏等。

要检查文件是否被隐藏,请使用隐藏的成员名称。

如果设置了FileAttributes.hidden,则意味着该文件是隐藏的。首先,找到查找属性的路径。

FileAttributes attributes = File.GetAttributes(path);

如果设置了以下内容,则意味着该文件现在使用隐藏的成员名称隐藏。

 File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);

Console.WriteLine("The {0} file is hidden.", path);

以上是 检查文件是否在C#中隐藏 的全部内容, 来源链接: utcz.com/z/340823.html

回到顶部