web-dev-qa-db-ja.com

フォルダーがディレクトリに存在するかどうかを確認し、C#を使用して作成します

ディレクトリC:/MP_Uploadという名前のフォルダーが含まれているかどうかを確認し、存在しない場合はフォルダーを自動的に作成するにはどうすればよいですか?

Visual Studio 2005 C#を使用しています。

92
gymcode

これは役立つはずです:

using System.IO;
...

string path = @"C:\MP_Upload";
if(!Directory.Exists(path))
{
    Directory.CreateDirectory(path);
}
182
cycaHuH
using System.IO;
...

Directory.CreateDirectory(@"C:\MP_Upload");

Directory.CreateDirectory は、必要なことを正確に行います。まだ存在しない場合は、ディレクトリを作成します。 最初に明示的なチェックを行う必要はありません。

既に存在するか、パスの一部が無効でない限り、パスで指定されたすべてのディレクトリが作成されます。 pathパラメーターは、ファイルパスではなくディレクトリパスを指定します。ディレクトリが既に存在する場合、このメソッドは何もしません。

(これは、必要に応じて、パスに沿ったすべてのディレクトリが作成されることも意味します:C:\aがまだ存在しない場合でも、CreateDirectory(@"C:\a\b\c\d")で十分です。)


ただし、ディレクトリの選択に関する注意事項を追加しましょう。システムパーティションのルートC:\の直下にフォルダーを作成することは好ましくありません。ユーザーにフォルダーの選択を許可するか、代わりに%APPDATA%または%LOCALAPPDATA%にフォルダーを作成することを検討してください(そのためには Environment.GetFolderPath を使用します)。 Environment.SpecialFolder 列挙のMSDNページには、特別なオペレーティングシステムフォルダーとその目的のリストが含まれています。

164
Heinzi
if(!System.IO.Directory.Exists(@"c:\mp_upload"))
{
     System.IO.Directory.CreateDirectory(@"c:\mp_upload");
}
11
user191966

これは動作するはずです

if(!Directory.Exists(@"C:\MP_Upload")) {
    Directory.CreateDirectory(@"C:\MP_Upload");
}
6
kufi
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;
            }
        }
    }
}
2
Azam Rahimjonov
    String path = Server.MapPath("~/MP_Upload/");
    if (!Directory.Exists(path))
    {
        Directory.CreateDirectory(path);
    }
1

これを試すことができます。

using System.IO;string path = "C:\MP_Upload";if(!Directory.Exists(path)){
   Directory.CreateDirectory(path);}
0
Ashish