You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've solved this issue the same way python does - by launching the FuseMount.mount in a new process, and then managing the unmount programatically in the parent process.
One thing you can try is launch a thread before you call mount, and have that thread call the OS umount command (using ProcessBuilder). If you have a thread live, before you mount, you can still control it even when fuse takes over the thread on which it is launched.
Hello,
how do you unmount programatically a mounted filesystem (like FuseMount.unmount... ) ?
The text was updated successfully, but these errors were encountered: