System.IO.FileSystem.GetAttributes C# (CSharp) 메소드

GetAttributes() 공개 추상적인 메소드

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
리턴 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