GetAttributes() public abstract méthode

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
Résultat FileAttributes
Exemple #1
0
 public static FileAttributes GetAttributes(string path)
 => FileSystem.GetAttributes(Path.GetFullPath(path));
Exemple #2
0
        public static FileAttributes GetAttributes(string path)
        {
            string fullPath = Path.GetFullPath(path);

            return(FileSystem.GetAttributes(fullPath));
        }