示例#1
0
 private static void DeleteHelper(string path, bool deleteReadonly)
 {
     using (var pin = new PinCollection())
     {
         NativeCommon.FabricFileDelete(
             pin.AddBlittable(path),
             NativeTypes.ToBOOLEAN(deleteReadonly));
     }
 }