GetAttributes() public abstract method

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

            return(FileSystem.GetAttributes(fullPath));
        }