创建目录+子目录

时间:2009-11-05 14:14:22

标签: c#

我有一个目录位置,如何创建所有目录?例如C:\ Match \ Upload将创建Match和子目录Upload(如果它不存在)。

使用C#3.0

由于

4 个答案:

答案 0 :(得分:64)

Directory.CreateDirectory(@“C:\ Match \ Upload”)将为您排序。您不需要创建所有子目录! create directory方法为您创建所有目录和子目录。

答案 1 :(得分:8)

if (!System.IO.Directory.Exists(@"C:\Match\Upload"))
{
  System.IO.Directory.CreateDirectory(@"C:\Match\Upload");
}

答案 2 :(得分:1)

对于googlers:在纯win32 / C ++中,使用SHCreateDirectoryEx

inline void EnsureDirExists(const std::wstring& fullDirPath)
{
    HWND hwnd = NULL;
    const SECURITY_ATTRIBUTES *psa = NULL;
    int retval = SHCreateDirectoryEx(hwnd, fullDirPath.c_str(), psa);
    if (retval == ERROR_SUCCESS || retval == ERROR_FILE_EXISTS || retval == ERROR_ALREADY_EXISTS)
        return; //success

    throw boost::str(boost::wformat(L"Error accessing directory path: %1%; win32 error code: %2%") 
        % fullDirPath
        % boost::lexical_cast<std::wstring>(retval));

    //TODO *djg* must do error handling here, this can fail for permissions and that sort of thing
}

答案 3 :(得分:0)

这是一个带有DirectoryInfo对象的示例,它将创建目录和所有子目录:

var path = @"C:\Foo\Bar";
new System.IO.DirectoryInfo(path).Create();

如果路径已存在,则调用Create()不会出错。

如果是文件路径,则可以执行以下操作:

var path = @"C:\Foo\Bar\jazzhands.txt";
new System.IO.FileInfo(path).Directory.Create();