c#中,要将文本框保存成txt,文件名用当前时间,代码怎么写??

如题所述

要引用using System.IO; string name = DateTime.Now.ToString("yyyyMMddhhmmss");//获取当前时间 年月日时分秒 大写的MM是月,小写的mm是分钟
string str = textBox1.Text;
StreamWriter sw=new StreamWriter(@"D:\"+name+".txt");//文件保存位置
sw.Write(str);
sw.Close();
温馨提示:内容为网友见解,仅供参考
第1个回答  2013-09-24
System.Windows.Forms.SaveFileDialog sfd=new SaveFileDialog();sfd.Filter="记事本(*.txt)|*.txt|所有文件(*.*)|*.*";

c#中,要将文本框保存成txt,文件名用当前时间,代码怎么写??
要引用using System.IO; string name = DateTime.Now.ToString("yyyyMMddhhmmss");\/\/获取当前时间 年月日时分秒 大写的MM是月,小写的mm是分钟 string str = textBox1.Text;StreamWriter sw=new StreamWriter(@"D:\\"+name+".txt");\/\/文件保存位置 sw.Write(str);sw.Close();...

c#中,要将文本框保存成txt,文件名用当前时间,代码怎么写??
要引用using System.IO; string name = DateTime.Now.ToString("yyyyMMddhhmmss");\/\/获取当前时间 年月日时分秒 大写的MM是月,小写的mm是分钟 string str = textBox1.Text;StreamWriter sw=new StreamWriter(@"D:\\"+name+".txt");\/\/文件保存位置 sw.Write(str);sw.Close();...

C#把文本框的内容生成txt文件到指定文件夹
winfrom 程序,最简单的将文本框内容生成txt文件 文件生成在 程序里面的debug目录下,可以自己修改要生成的目录

c#怎么把文本框的内容记录到txt文本
举个栗子:\/\/txt文本文件路径string path = ""; \/\/实例化一个StreamWrite对象System.IO.StreamWrite streamWrite = new System.IO.StreamWrite(path);\/\/写入streamWrite.Write(txtbox.Text);\/\/释放streamWrite.Dispose();

C#中怎么把数据另存为txt文件中,求代码?
public static void Write(string File_Path,string text){ FileStream fs = new FileStream(File_Path, FileMode.Append);StreamWriter sw = new StreamWriter(fs, Encoding.Default);sw.Write(text);sw.Close();fs.Close();} File_Path 保存路径 text 要保存的内容 ...

c#怎样才能保存文本框内的格式到TXT文件
System.IO.File.AppendAllText("c:\\\\aa.txt","kkkkkk");\/\/此语句把"kkkkkk"写入c:\\\\aa.txt,如果文件不存在则创建,存在则追加.更多操作文本文件的方法:参考资料:http:\/\/news.797net.com\/blog\/show.aspx?id=W2011051816415501&userid=xuzhuang19 ...

c# 保存txt到本地
1、建立一个文本文件 public class FileClass { public static void Main(){ WriteToFile();} static void WriteToFile(){ StreamWriter SW;SW=File.CreateText("c:\\MyTextFile.txt");SW.WriteLine("God is greatest of them all");SW.WriteLine("This is second line");SW.Close();Console....

c#中如何用SaveFileDialog把TextBox的值保存到指定的txt文件中?
保存文件对话框 SaveFileDialog所完成的工作是让用户指定存放文件的路径和文件类型,实际的保存工作需要用文件流操作完成。示例代码如下:(1)在Visual Studio中创建一个“Windows窗体应用程序”(2)在Form1上布置一个TextBox和一个Button,并将textBox1的Multiline属性设置为true,允许textBox1多行输入 (...

C#:用保存对话框保存成文件,总提示文件正在使用,紧急求助……
去掉:if (sfd.OpenFile() != null)sfd.OpenFile()会打开输入流占用文件,和richTextBox1.SaveFile产生冲突,这里没必要用sfd.OpenFile()检测

C#生成txt文件。
主要就是用DateTime.Now.ToString("yyyyMMddHHmmss")和DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")去格式化时间,用StreamWriter去创建文件,用File.Copy复制文件,用File.Delete删除文件,代码见附件中。

相似回答