GetAttributes() public abstract method

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
return FileAttributes
Esempio n. 1
0
 public static FileAttributes GetAttributes(string path)
 => FileSystem.GetAttributes(Path.GetFullPath(path));
Esempio n. 2
0
        public static FileAttributes GetAttributes(string path)
        {
            string fullPath = Path.GetFullPath(path);

            return(FileSystem.GetAttributes(fullPath));
        }