C#form如何随意选择路径保存txt文件 15
我的意思很简单点击一个按钮,把textbox1的值赋给文件名把textbox2的值赋给文件内容然后让用户选择文件夹当作存放的位置,在点击确定,文件就保存成功在相应的位置了...
我的意思很简单
点击一个按钮,把textbox1的值赋给文件名
把textbox2的值赋给文件内容
然后让用户选择文件夹当作存放的位置,
在点击确定,文件就保存成功在相应的位置了 展开
点击一个按钮,把textbox1的值赋给文件名
把textbox2的值赋给文件内容
然后让用户选择文件夹当作存放的位置,
在点击确定,文件就保存成功在相应的位置了 展开
1个回答
展开全部
try
{
string name = this.textBox1.Text; //文件名
string content = this.textBox2.Text; //文件内容
string path = string.Empty; //文件路径
SaveFileDialog save = new SaveFileDialog();
if (save.ShowDialog() == DialogResult.OK)
path = save.FileName;
if(path != string.Empty)
{
using (System.IO.FileStream file = new System.IO.FileStream(path, System.IO.FileMode.Create, System.IO.FileAccess.Write))
{
using (System.IO.TextWriter text = new System.IO.StreamWriter(file, System.Text.Encoding.Default))
{
text.Write(content);
}
}
}
}
catch(Exception ex)
{
throw ex;
}
希望对你有帮助,有疑问请追问或是HI
{
string name = this.textBox1.Text; //文件名
string content = this.textBox2.Text; //文件内容
string path = string.Empty; //文件路径
SaveFileDialog save = new SaveFileDialog();
if (save.ShowDialog() == DialogResult.OK)
path = save.FileName;
if(path != string.Empty)
{
using (System.IO.FileStream file = new System.IO.FileStream(path, System.IO.FileMode.Create, System.IO.FileAccess.Write))
{
using (System.IO.TextWriter text = new System.IO.StreamWriter(file, System.Text.Encoding.Default))
{
text.Write(content);
}
}
}
}
catch(Exception ex)
{
throw ex;
}
希望对你有帮助,有疑问请追问或是HI
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询