fuse4js
fuse4js copied to clipboard
`allow_other` option support
385 // even...
386 ...
387 const char* debugOption = f4js.enableFuseDebug? "-d":"-f";
388 char *argv[] = { (char*)"dummy", (char*)"-s", (char*)"-o", (char*)"allow_other", (char*)debugOption, (char*)f4js.root.c_str() };
389 ...
+1
+1
noevil,
Not sure if this was an option at the time, but as of right now you can do the following (from your application):
var opts = ['-o','allow_other'];
var debugFuse = false;
f4js.start(mountpoint, handlers, debugFuse, opts);