javafs
javafs copied to clipboard
Java filesystems as FUSE
I found JavaFsTest failed at Mac M1 system but succeeded at Mac Intel system. Is there any difference between these two systems and how can I adjust this program to...
1. upgrade gradle version to fix sync failure 2. upgrade jnr versions to support macFUSE in Mac M1 laptop 3. fix compatible issues caused by upgraded jnr versions
jnr-fuse now supports windows via WinFsp, but the API is too low level for my needs. I'm not sure where to start on adding WinFsp support to this project. Or...
when reading from the buffer in line 296, if we got -1 it means 0 bytes were read, so we need to return 0, because this is the right value...
Hi, I have a question regarding correct usage of the function open/read/write. I am working on a Fuse-Project to map files on a web-server (accessible by using REST-API) to the...
When I try to read the content of a file (from the bash or a file browser) I get this exception: ``` WARNING: Exception java.lang.UnsupportedOperationException at co.paralleluniverse.javafs.FuseFileSystemProvider.lock(FuseFileSystemProvider.java:540) at co.paralleluniverse.fuse.LoggedFuseFilesystem$21.invoke(LoggedFuseFilesystem.java:283) at...
I am trying to implement a subclass of `AbstractFuseFilesystem` and need to be able to return error codes. For example: ``` protected synchronized int readdir(String path, StructFuseFileInfo info, DirectoryFiller filler)...
when i using samba server read then file under the fuse mount point, it get the file attributes by getattr function in fuse, use the file attribute block info to...
See https://github.com/jnr/jnr-ffi/issues/51 for the issue. This could be fixed in the library using something like: ``` java /** * Workaround for unfortunate system class loader usage. * * @see https://github.com/jnr/jnr-ffi/issues/51...
Trying to mount an already mounted file system does not trigger an exception. It seems to be swallowed and the following output is produced: ``` mount_osxfusefs: mount point /private/tmp/mount is...