如何监控并捕获文档类文件的操作(如打开,保存,关闭)

来源:百度知道 编辑:UC知道 时间:2024/07/05 08:21:19
有没有用c#编写的这类程序,没有程序的希望大虾们给我提供下这类文件运行的原理之类的知识。
捕获的某一类型的文档文件,只要文件类型就可以。不要文件完整名称。或者捕获某类型正在运行的文档文件的fullname

c#文件监视器源代码

全部源代码如下:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;

namespace WindowsApplication8
{
///
/// Form1 的摘要说明。
///
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;

public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();

//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}

///
/// 清理所有正在使用的资源。
/