我想将字符串name
放入代码中,以便创建一个由文本框输入命名的文件夹。我怎样才能修改这个代码来做到这一点?
string name = txtUsername.Text;
string path = Server.MapPath("~/here the string name /");
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
我想将字符串name
放入代码中,以便创建一个由文本框输入命名的文件夹。我怎样才能修改这个代码来做到这一点?
string name = txtUsername.Text;
string path = Server.MapPath("~/here the string name /");
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}