Exemple #1
0
 // throws FuseException
 //
 // compatibility APIs
 public static void mount(String[] args, Filesystem1 filesystem1)
 {
     mount(args, new Filesystem2ToFilesystem3Adapter
         (
         new Filesystem1ToFilesystem2Adapter(filesystem1)), LogManager.GetLogger(typeof(Filesystem1))
         );
 }
 public Filesystem1ToFilesystem2Adapter(Filesystem1 fs1)
 {
     this.fs1 = fs1;
 }