System.IO.FileSystem.GetAttributes C# (CSharp) Method

GetAttributes() public abstract method

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
return FileAttributes
        public abstract FileAttributes GetAttributes(string fullPath);
        public abstract void SetAttributes(string fullPath, FileAttributes attributes);

Usage Example

示例#1
0
 public static FileAttributes GetAttributes(string path)
 => FileSystem.GetAttributes(Path.GetFullPath(path));
All Usage Examples Of System.IO.FileSystem::GetAttributes