Пример #1
0
        public Filesystem3ToFuseFSAdapter(Filesystem3 fs3, Charset cs, ILog log)
        {
            this.fs3 = fs3;

            // XattrSupport is optional
            if (fs3 is XattrSupport)
                xattrSupport = (XattrSupport)fs3;

            this.cs = cs;
            this.log = log;
        }
Пример #2
0
 // throws FuseException
 //
 // prefered String level API
 public static void mount(String[] args, Filesystem3 filesystem3, ILog log)
 {
     mount(args, new Filesystem3ToFuseFSAdapter(filesystem3, log));
 }
Пример #3
0
 public Filesystem3ToFuseFSAdapter(Filesystem3 fs3, String encoding, ILog log)
     : this(fs3, Charset.forName(encoding), log)
 {
 }
Пример #4
0
 public Filesystem3ToFuseFSAdapter(Filesystem3 fs3, ILog log)
     : this(fs3, SystemJ.getProperty("file.encoding", "UTF-8"), log)
 {
 }