コード例 #1
0
ファイル: Program.cs プロジェクト: twd2/dokan-dotnet
 static void Main(string[] args)
 {
     try
     {
         RFS rfs = new RFS();
         rfs.Mount("r:\\", DokanOptions.DebugMode | DokanOptions.StderrOutput);
         Console.WriteLine("Success");
     }
     catch (DokanException ex)
     {
         Console.WriteLine("Error: " + ex.Message);
     }
 }
コード例 #2
0
 private static void Main(string[] args)
 {
     try
     {
         RFS rfs = new RFS();
         rfs.Mount("r:\\", DokanOptions.DebugMode | DokanOptions.StderrOutput);
         Console.WriteLine("Success");
     }
     catch (DokanException ex)
     {
         Console.WriteLine("Error: " + ex.Message);
     }
 }