WillMcavoy
WillMcavoy

Reputation: 1815

Support write operation in FUSE filesystem using FUSE-J

I am working on developing a file system filter driver type of functionality in Linux. I am trying to explore and use http://sourceforge.net/projects/fuse-j/?source=typ_redirect for the very purpose.

However,FUSE-J does not support write,it provides a Read Only filesystem.Has anyone tried to implement write call ?

Is there any other java implementation for FUSE filesystem built on top of FUSE module?

Upvotes: 2

Views: 993

Answers (1)

Sergey Tselovalnikov
Sergey Tselovalnikov

Reputation: 6036

You can easily implement FUSE in java with jnr-fuse.

Project uses JNR, so you achieve full JNI performance with and ease of implementation.

Example of hello-world filesystem.

Upvotes: 2

Related Questions