예제 #1
0
파일: File.cs 프로젝트: bangush/LongPath
 public static FileStream OpenRead(String path)
 {
     if (Common.IsRunningOnMono() && Common.IsPlatformUnix())
     {
         SysFile.OpenRead(path);
     }
     return(Open(path, FileMode.Open, FileAccess.Read, FileShare.Read));
 }