-2

我想将字符串name放入代码中,以便创建一个由文本框输入命名的文件夹。我怎样才能修改这个代码来做到这一点?

string name = txtUsername.Text;
string path = Server.MapPath("~/here the string name /");

if (!Directory.Exists(path))
{
    Directory.CreateDirectory(path);
}
4

1 回答 1

2
string path = Server.MapPath("~/" + name);
于 2015-04-16T20:18:19.663 回答