Ejemplo n.º 1
0
 public int UnmountProxy(
     ref DOKAN_FILE_INFO rawFileInfo)
 {
     try
     {
         return(operations_.Unmount(GetFileInfo(ref rawFileInfo)));
     }
     catch (Exception e)
     {
         Console.Error.WriteLine(e.ToString());
         return(-1);
     }
 }
Ejemplo n.º 2
0
        public int Unmount(DokanFileInfo info)
        {
            cache_.RemoveAllCache();

            return(ope_.Unmount(info));
        }