- string path = @"C:\Program Files";
- System.Diagnostics.Process.Start("explorer.exe", path);
C#建立文件夹
public void saveFile(string xiaoQuName)
{ //建立文件夹
string path =Server.MapPath("UploadFiles").ToString() + "\\" + xiaoQuName; //建立路径字符串
if (!Directory.Exists(path)) //如果不存在就建立
{ Directory.CreateDirectory(path); }
else //存在就删除
{ DeleteDirecory(pathStr, true); //删除文件夹及其文件图片,调用函数 } }
public static void DeleteDirecory(string DirecoryPath, bool isBool)
{ if (Directory.Exists(DirecoryPath) == false) return;
if (isBool == true)
{ Directory.Delete(DirecoryPath, true); }
else
{ Directory.Delete(DirecoryPath, false); } }
c# winform 判断文件夹是否存在,新建文件夹,判断文件夹存不存在
- if (Directory.Exists("d:\\pic"))
- {
- MessageBox.Show("存在");
- }
- else
- {
- MessageBox.Show("不存在");
- }
方法2:
- DirectoryInfo TheFolder = new DirectoryInfo("d:\\pic");
- if (TheFolder.Exists)
- {
- MessageBox.Show("进来了");
- }
- else
- {
- MessageBox.Show("没进来");
- }
"d:\\pic"可以这样变成路径
@"d:\pic"
也就是说转义符可以用@来代替
新建文件夹:
- if (!Directory.Exists(@txtFileSaveDir.Text))//若文件夹不存在则新建文件夹
- {
- Directory.CreateDirectory(@txtFileSaveDir.Text); //新建文件夹
- }
using System.io;
if (!Directory.Exists(@"C:\Program Files\TDTK\CoalTraffic\Image\WeightImage"))//判断文件夹是否已经存在
{
Directory.CreateDirectory(@"C:\Program Files\TDTK\CoalTraffic\Image\WeightImage");//创建文件夹
}