Esempio n. 1
0
 private unsafe int Unlink(path *path)
 {
     try
     {
         return(_fileSystem.Unlink(ToSpan(path)));
     }
     catch
     {
         return(-EIO);
     }
 }
Esempio n. 2
0
 private unsafe int Unlink(path *path)
 {
     try
     {
         return(_fileSystem.Unlink(ToSpan(path)));
     }
     catch (Exception ex)
     {
         Console.WriteLine($"UNLINK gets error: {ex.Message}");
         return(-EIO);
     }
 }