我想用winForm窗体,实现对文本文件进行 *** 作。

我想用winForm窗体,实现对文本文件进行 *** 作。,第1张

//写入文件

void Button1_Click(object sender, EventArgs e)

{

if (System.IO.File.Exists(@"C:\a.txt") == false) System.IO.File.Create(@"C:\a.txt")

//判断文件是否存在

System.IO.File.WriteAllText(@"C:\a.txt",textBox1.Text)

}

//窗体加载时读取

void MainForm_Load(object sender, EventArgs e)

{

if(System.IO.File.Exists(@"C:\a.txt") == true) textBox1.Text = System.IO.File.ReadAllText(@"C:\a.txt")

}

1.获得所有文件: System.IO.Directory.GetFiles("路径","*.*,System.IO.SearchOption.AllDirectories)

2.重命名文件: Sytem.IO.File.Move

可以自己做个自定义控件 一般用个button加一个textbox控件就可以实现:

下面这段代码是在button的click事件添加的 :

if (openFileDialog1.ShowDialog() == DialogResult.OK)

{

tbx_fileload.Text = openFileDialog1.FileName

// tbx_fileload.Text = openFileDialog1.SafeFileName

}

如果想打开文件夹下对应的一个文件,比如想打开一个excel文件,那么还要引入打开excel文件的dll,然后通过dll里面的一些方法去做。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11733991.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存