예제 #1
0
파일: File.cs 프로젝트: bangush/LongPath
 public static FileAttributes GetAttributes(string path)
 {
     if (Common.IsRunningOnMono() && Common.IsPlatformUnix())
     {
         return(SysFile.GetAttributes(path));
     }
     return(Common.GetFileAttributes(path));
 }