_DokanUnmount() public static method

public static _DokanUnmount ( Char drive_letter ) : void
drive_letter Char
return void
Exemplo n.º 1
0
        public static void Main(string[] args)
        {
            if (Environment.Version.Major < 4)
            {
                MessageBox.Show("You need to install Microsoft .NET Framework Version 4 in order to use put.io mounter.");
                return;
            }

            WinMounter mounter = new WinMounter(WinMounter.GetAvailableDriveLetter('P'));

            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(mounter.CrashLogger);
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            mounter.SettingsForm = new SettingsForm(mounter);
            mounter.MainWindow   = new MainWindow(mounter);
            mounter.MainWindow.InitializeTrayIcon();
            mounter.MainWindow.GoInvisible();
            mounter.Silent = args.Contains(@"/silent");

            try
            {
                mounter.TryMount(null, null);
                mounter.RefreshCacheSize();
                mounter.MainWindow.notify_icon.Visible = true;
                Application.Run();
                logger.Debug("Exiting.");
                mounter.MainWindow.notify_icon.Visible = false;
            }
            finally
            {
                PutioDokanOperations._DokanUnmount(mounter.DriveLetter);
            }
        }
Exemplo n.º 2
0
 public void TryUnmount(object Sender, EventArgs e)
 {
     PutioDokanOperations._DokanUnmount(this.DriveLetter);
     try
     {
         this.PutioFileSystem.CleanUp();
     }
     catch { }
     Mounted = false;
     this.MainWindow.ToggleMountUnmount(Mounted);
 }