C# 在執行程式目錄下產生文件夾

//產生一個Log文件夾
string
appPath = Application.StartupPath; if (!Directory.Exists(appPath + "/log")) { Directory.CreateDirectory(appPath + "/log"); }
posted @ 2016-10-11 16:04  新冠時代  阅读(117)  评论(0)    收藏  举报