取得文件夹的名字,操作文件夹

 取得文件夹的名字

FolderBrowserDialog browserDialog = new FolderBrowserDialog();

  browserDialog.ShowDialog();
 string path = browserDialog.SelectedPath;

 

从web.config中取得名

 ConfigurationManager.AppSettings["key"]

 

获取与bin同级的文件夹

 AppDomain.CurrentDomain.BaseDirectory+文件名

 

 创建文件夹

var path = AppDomain.CurrentDomain.BaseDirectory + ConfigurationManager.AppSettings["IndexDateBase"]; 

 

 

 
 if (!System.IO.Directory.Exists(path))

 

 {
  System.IO.Directory.CreateDirectory(path);
 }

 

temp为项目下的文件夹,template.docx为文件【非根目录】

 var path =System.AppDomain.CurrentDomain.BaseDirectory +@"/Temp/template.docx";

 

你可能感兴趣的:(操作文件)