コード例 #1
0
ファイル: FabricFile.cs プロジェクト: zmyer/service-fabric
 private static bool ExistsHelper(string path)
 {
     using (var pin = new PinCollection())
     {
         BOOLEAN isExisted;
         NativeCommon.FabricFileExists(pin.AddBlittable(path), out isExisted);
         return(NativeTypes.FromBOOLEAN(isExisted));
     }
 }