I intend to use fuse jna to implement a network disk, and when i create a file, i want to upload it to the network disk.
i have extended the FuseFilesystemAdapterFull class and implement the method getattr, create, read and write.. just as the example memoryfs.java.
and the problem is when should i call the upload method ?,when i call it in the create method , it just doesn't response, and the upload fails.i was wondering what's the steps of the creating using fuse jna. and can i upload the file at the very end of the creating process?
thanks a lot.