string path = textBox1.Text.Trim();
//判断目录是否存在
if (Directory.Exists(path))
{
MessageBox.Show("已存在相同目录");
}
else
{
//创建目录
Directory.CreateDirectory(path);
MessageBox.Show("创建成功");
}
string path = textBox1.Text.Trim();
//判断目录是否存在
if (Directory.Exists(path))
{
//删除目录
Directory.Delete(path,true);
}
else
{
MessageBox.Show("目录不存在");
}
``
string path = textBox1.Text.Trim();
string Getpath = @”bin”;
//判断目录是否存在
if (Directory.Exists(path))
{
//移动文件目录
Directory.Move(path,Getpath);
}
else
{
MessageBox.Show("目录不存在");
}
“`