电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

C文件监视器源代码

C文件监视器源代码_第1页
1/6
C文件监视器源代码_第2页
2/6
C文件监视器源代码_第3页
3/6
C#文件监视器源代码 1.实现的界面以下 2.主窗口源代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace MingXinERP { public partial class frmfilewatch : Form { public frmfilewatch() { InitializeComponent(); } public static string stradd = "true"; public static string strchange = "true"; public static string strdel = "true"; public static string strrename = "true"; private void toolStripButton1_Click(object sender, EventArgs e) { DialogResult r = folderBrowserDialog1.ShowDialog(); if (r == DialogResult.OK) txtpath.Text = folderBrowserDialog1.SelectedPath; } private void frmfilewatch_Load(object sender, EventArgs e) { } private void toolStripButton2_Click(object sender, EventArgs e) { try { if (Directory .Exists (txtpath .Text )) { fileSystemWatcher1.EnableRaisingEvents =true ; fileSystemWatcher1.Path = txtpath.Text; richTextBox1 .Text +="正启动文件监视................\n"; } } catch { MessageBox.Show("不存在{0}", txtpath .Text ); } } private void toolStripButton3_Click(object sender, EventArgs e) { fileSystemWatcher1.EnableRaisingEvents = false; richTextBox1.Text += "已停止文件监视................\n"; } private void toolStripButton4_Click(object sender, EventArgs e) { richTextBox1.Text = ""; } private void toolStripButton5_Click(object sender, EventArgs e) { try { saveFileDialog1.ShowDialog(); richTextBox1.SaveFile(saveFileDialog1.FileName); } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void fileSystemWatcher1_Changed(object sender, FileSystemEventArgs e) { if (strchange == "true") { richTextBox1.Text += "文件被改变: " + DateTime.Now + " " + e.FullPath + "\n"; } } private void fileSystemWatcher1_Created(object sender,...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

C文件监视器源代码

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部