コード例 #1
0
ファイル: Server.cs プロジェクト: jangocheng/BellyRub
 private void generateDefaultSite()
 {
     if (!Directory.Exists(RESTBootstrapper.RootDir()))
     {
         Directory.CreateDirectory(RESTBootstrapper.RootDir());
     }
     writefile("index.html", RESTBootstrapper.RootDir());
 }
コード例 #2
0
ファイル: Server.cs プロジェクト: jangocheng/BellyRub
 public string GetRootPath()
 {
     return(RESTBootstrapper.RootDir());
 }