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

public abstract GetAttributes ( string fullPath ) : FileAttributes
fullPath string
리턴 FileAttributes
예제 #1
0
 public static FileAttributes GetAttributes(string path)
 => FileSystem.GetAttributes(Path.GetFullPath(path));
예제 #2
0
파일: File.cs 프로젝트: dfederm/corefx
        public static FileAttributes GetAttributes(string path)
        {
            string fullPath = Path.GetFullPath(path);

            return(FileSystem.GetAttributes(fullPath));
        }