如何使用路径C#检查目录是否存在

How to check existence of directory using path C#

使用

Directory _dir = Directory.CreateDirectory(path);

那么如何将目录的对象存储在一个变量中,然后我必须检查指定路径的目录是否存在?

if(!_dir.exists())
{
    _dir.CreateDirectory(path);
}

在 C# 中允许吗?

DirectoryInfo dir = Directory.CreateDirectory(path);
if(!dir.Exists)
{
    dir.CreateDirectory(path);
}

或者

DirectoryInfo dir = Directory.CreateDirectory(path);
if(!Directory.Exists(path))
{
    dir.CreateDirectory(path);
}

试试这个...

        string path=@"C:\Users\v\Desktop\DESKTOP";
        if(!Directory.Exists(path))
        {
            Directory.CreateDirectory(path);
        }