0
私はbin/debugでファイルを作成する方法を知っています。bin/debugにフォルダを作成する方法
string file = "example"
StreamWriter outputStream = File.CreateText(file + ".txt");
bin/debugにフォルダを作成することもできますか?
私はbin/debugでファイルを作成する方法を知っています。bin/debugにフォルダを作成する方法
string file = "example"
StreamWriter outputStream = File.CreateText(file + ".txt");
bin/debugにフォルダを作成することもできますか?
Directory.CreateDirectory("NewFolder");
の
可能な複製[フォルダが存在しない場合は、それを作成](http://stackoverflow.com/questions/9065598/if-a-folder-does-not-exist-create-it) – FCin
'System.IO.Directory.CreateDirectory' – FakeCaleb
[ディレクトリ。作成ディレクトリメソッド(文字列)](https://msdn.microsoft.com/en-us/library/54a0at6s(v = vs.110).aspx) –