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, Event