Ejemplo n.º 1
0
 public int CleanupProxy(
     IntPtr rawFileName,
     ref DOKAN_FILE_INFO rawFileInfo)
 {
     try
     {
         string file = GetFileName(rawFileName);
         return(operations_.Cleanup(file, GetFileInfo(ref rawFileInfo)));
     }
     catch (Exception e)
     {
         Console.Error.WriteLine(e.ToString());
         return(-1);
     }
 }
Ejemplo n.º 2
0
 public int Cleanup(string filename, DokanFileInfo info)
 {
     return(ope_.Cleanup(filename, info));
 }