I know how to create a file in bin/debug.
string file = "example"
StreamWriter outputStream = File.CreateText(file + ".txt");
But is it also possible to create a folder into bin/debug?
I know how to create a file in bin/debug.
string file = "example"
StreamWriter outputStream = File.CreateText(file + ".txt");
But is it also possible to create a folder into bin/debug?