Answers:
using System.IO;
...
Directory.CreateDirectory(@"C:\MP_Upload");
Directory.CreateDirectory完全满足您的要求:如果目录不存在,它将创建目录。无需先进行显式检查。
除非在路径中指定的目录已经存在或者路径的某些部分无效,否则将创建该目录中指定的所有目录。path参数指定目录路径,而不是文件路径。如果目录已经存在,则此方法不执行任何操作。
(这也意味着,如果需要,将创建路径中的所有目录:CreateDirectory(@"C:\a\b\c\d")
足够,即使C:\a
尚不存在。)
但是,让我对您选择的目录添加一些警告:不赞成在系统分区根目录下直接创建一个文件夹C:\
。考虑让用户选择一个文件夹或创建文件夹%APPDATA%
或%LOCALAPPDATA%
代替(使用Environment.GetFolderPath为该)。Environment.SpecialFolder枚举的MSDN页面包含特殊操作系统文件夹及其用途的列表。
EnsureDirectoryExists
会使该方法更难找到。
Directory.CreateDirectory
如果文件夹名称与现有文件名匹配,则会抛出该错误。
using System;
using System.IO;
using System.Windows.Forms;
namespace DirCombination
{
public partial class DirCombination : Form
{
private const string _Path = @"D:/folder1/foler2/folfer3/folder4/file.txt";
private string _finalPath = null;
private string _error = null;
public DirCombination()
{
InitializeComponent();
if (!FSParse(_Path))
Console.WriteLine(_error);
else
Console.WriteLine(_finalPath);
}
private bool FSParse(string path)
{
try
{
string[] Splited = path.Replace(@"//", @"/").Replace(@"\\", @"/").Replace(@"\", "/").Split(':');
string NewPath = Splited[0] + ":";
if (Directory.Exists(NewPath))
{
string[] Paths = Splited[1].Substring(1).Split('/');
for (int i = 0; i < Paths.Length - 1; i++)
{
NewPath += "/";
if (!string.IsNullOrEmpty(Paths[i]))
{
NewPath += Paths[i];
if (!Directory.Exists(NewPath))
Directory.CreateDirectory(NewPath);
}
}
if (!string.IsNullOrEmpty(Paths[Paths.Length - 1]))
{
NewPath += "/" + Paths[Paths.Length - 1];
if (!File.Exists(NewPath))
File.Create(NewPath);
}
_finalPath = NewPath;
return true;
}
else
{
_error = "Drive is not exists!";
return false;
}
}
catch (Exception ex)
{
_error = ex.Message;
return false;
}
}
}
}
String path = Server.MapPath("~/MP_Upload/");
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}