public void Close(object FileNode, object FileDesc0)
 {
     try {
         Storage.Close((IFSEntryPointer)FileDesc0);
     } catch (Win32Exception ex) {
         throw WindowsExceptionGenerator.GetIOException(ex);
     } catch (NTException ex) {
         throw WindowsExceptionGenerator.GetIOException(ex);
     }
 }