Exemplo n.º 1
0
 private static bool ExistsHelper(string path)
 {
     using (var pin = new PinCollection())
     {
         BOOLEAN isExisted;
         NativeCommon.FabricFileExists(pin.AddBlittable(path), out isExisted);
         return(NativeTypes.FromBOOLEAN(isExisted));
     }
 }