判断方法:
DirectoryInfo di = new DirectoryInfo(path);if ((di.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) //为隐藏的
同理可以判断目录是否为只读(ReadOnly)或者系统(System)等其他属性。
本文共 230 字,大约阅读时间需要 1 分钟。
判断方法:
DirectoryInfo di = new DirectoryInfo(path);if ((di.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) //为隐藏的
同理可以判断目录是否为只读(ReadOnly)或者系统(System)等其他属性。
转载于:https://www.cnblogs.com/visionfeng/p/6069102.html