fuse4js icon indicating copy to clipboard operation
fuse4js copied to clipboard

`allow_other` option support

Open duanckham opened this issue 11 years ago • 3 comments

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 ...

duanckham avatar Jan 07 '14 08:01 duanckham

+1

POPSuL avatar Feb 18 '14 07:02 POPSuL

+1

mscdex avatar Apr 26 '14 12:04 mscdex

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);

serisman avatar May 02 '14 15:05 serisman