상속: FileSystem
예제 #1
0
 public static void Main(string[] args)
 {
     using (HelloFS fs = new HelloFS ()) {
         string[] unhandled = fs.ParseFuseArguments (args);
         foreach (string key in fs.FuseOptions.Keys) {
             Console.WriteLine ("Option: {0}={1}", key, fs.FuseOptions [key]);
         }
         if (!fs.ParseArguments (unhandled))
             return;
         // fs.MountAt ("path" /* , args? */);
         fs.Start ();
     }
 }
예제 #2
0
 public static void Main(string[] args)
 {
     using (HelloFS fs = new HelloFS()) {
         string[] unhandled = fs.ParseFuseArguments(args);
         foreach (string key in fs.FuseOptions.Keys)
         {
             Console.WriteLine("Option: {0}={1}", key, fs.FuseOptions [key]);
         }
         if (!fs.ParseArguments(unhandled))
         {
             return;
         }
         // fs.MountAt ("path" /* , args? */);
         fs.Start();
     }
 }