Exemplo n.º 1
0
 private unsafe int Link(path *fromPath, path *toPath)
 {
     try
     {
         return(_fileSystem.Link(ToSpan(fromPath), ToSpan(toPath)));
     }
     catch
     {
         return(-EIO);
     }
 }