GetAttributes() публичный абстрактный Метод

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
Результат FileAttributes
Пример #1
0
 public static FileAttributes GetAttributes(string path)
 => FileSystem.GetAttributes(Path.GetFullPath(path));
Пример #2
0
        public static FileAttributes GetAttributes(string path)
        {
            string fullPath = Path.GetFullPath(path);

            return(FileSystem.GetAttributes(fullPath));
        }