例如
copy \\server\test.txt "%userprofile%\桌面\"
notepad "%userprofile%\桌面\"
在按钮事件里写:if(TextBox1.Text!=""&&TextBox1.Text!="")
{
string path = Server.MapPath("Files") + "\\" + TextBox1.Text.Trim()
//TextBox1.Text.Trim()这个控件用来获取文件名字和类型,比如1.text;Files文件是项目里面的一个文件,新建的text文件放在此目录下,可以自己根据自己的写
FileInfo fi=new FileInfo(path)
if(!fi.Exists)
{
StreamWriter sw = fi.CreateText()
sw.WriteLine(TextBox2.Text.Trim())
//这是写入文件的内容,不写空就是了
sw.Flush()
sw.Close()
}
Label1.Text = "成功"
//指示是否成功
}
else
{
Label1.Text = "请输入文件名和文件类型"
}
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)