ディレクトリを作成する

Directory.CreateDirectory()でディレクトリを作成できます。

string directory = @"test";

Directory.CreateDirectory(directory);

関連項目