FileSystemWatcher 用法

FileSystemWatcher 用法1.FileSystemWatcher基础在应用FileSystemWatcher对象之前,必须了解这个对象的一些基本属性和事件。毫无疑问,这个对象的最重要的属性为“EnableRaisingEvents”属性。这个属性决定对象在收到改变通知时是否提交事件。如果EnableRaisingEvents属性设为假,对象将不会提交改变事件。如果设为真,它将提交改变事件。下面是在应用FileSys

大家好,又见面了,我是你们的朋友全栈君。

1.FileSystemWatcher基础

在应用FileSystemWatcher对象之前,必须了解这个对象的一些基本属性和事件。毫无疑问,这个对象的最重要的属性为“EnableRaisingEvents”属性。

这个属性决定对象在收到改变通知时是否提交事件。如果EnableRaisingEvents属性设为假,对象将不会提交改变事件。如果设为真,它将提交改变事件。下面是在应用FileSystemWatcher对象时将要用到的其它一些重要属性/事件:

属性:

Path——这个属性告诉FileSystemWatcher它需要监控哪条路径。例如,如果我们将这个属性设为“C:Temp”,对象就监控那个目录发生的所有改变。
IncludeSubDirectories——这个属性说明FileSystemWatcher对象是否应该监控子目录中发生的改变。
Filter——这个属性允许你过滤掉某些类型的文件发生的变化。例如,如果我们只希望在TXT文件被修改/新建/删除时提交通知,可以将这个属性设为“*txt”。在处理高流量或大型目录时,使用这个属性非常方便。

事件

Changed——当被监控的目录中有一个文件被修改时,就提交这个事件。值得注意的是,这个事件可能会被提交多次,即使文件的内容仅仅发生一项改变。这是由于在保存文件时,文件的其它属性也发生了改变。
Created——当被监控的目录新建一个文件时,就提交这个事件。如果你计划用这个事件移动新建的事件,你必须在事件处理器中写入一些错误处理代码,它能处理当前文件被其它进程使用的情况。之所以要这样做,是因为Created事件可能在建立文件的进程释放文件之前就被提交。如果你没有准备正确处理这种情况的代码,就可能出现异常。
Deleted——当被监控的目录中有一个文件被删除,就提交这个事件。
Renamed——当被监控的目录中有一个文件被重命名,就提交这个事件。
注:如果你没有将EnableRaisingEvents设为真,系统不会提交任何一个事件。如果有时FileSystemWatcher对象似乎无法工作,请首先检查EnableRaisingEvents,确保它被设为真。

事件处理

当FileSystemWatcher调用一个事件处理器时,它包含两个自变量——一个叫做“sender”的对象和一个叫做“e”的FileSystemEventArgs对象。我们感兴趣的自变量为FileSystemEventArgs自变量。这个对象中包含有提交事件的原因。以下是FileSystemEventArgs对象的一些属性:

Name——这个属性中使事件被提交的文件的名称。其中并不包含文件的路径——只包含使用事件被提交的文件或目录名称。
ChangeType——这是一个WatcherChangeTypes,它指出要提交哪个类型的事件。其有效值包括:
○Changed
○Created
○Deleted
○Renamed
FullPath——这个属性中包含使事件被提交的文件的完整路径,包括文件名和目录名。

2.對多文件夾的監視實例

FileSystemWatcher 用法
public
 
static
 
void
 Run(ArrayList  ss) 
FileSystemWatcher 用法FileSystemWatcher 用法        



FileSystemWatcher 用法            
foreach (string s in ss) 
FileSystemWatcher 用法FileSystemWatcher 用法            
{               
FileSystemWatcher 用法                    FileSystemWatcher watcher 
= new FileSystemWatcher(); 
FileSystemWatcher 用法                    watcher.Path 
= s;//@”d:DownLoads”;//args[1]; 
FileSystemWatcher 用法FileSystemWatcher 用法
                    /* Watch for changes in LastAccess and LastWrite times, and  
FileSystemWatcher 用法                       the renaming of files or directories. 
*/
 
FileSystemWatcher 用法                    watcher.NotifyFilter 
= NotifyFilters.LastAccess | NotifyFilters.LastWrite 
FileSystemWatcher 用法                    
| NotifyFilters.FileName | NotifyFilters.DirectoryName; 
FileSystemWatcher 用法                    
// Only watch text files. 
FileSystemWatcher 用法
                    watcher.Filter = *.flv
FileSystemWatcher 用法
FileSystemWatcher 用法                    
// Add event handlers. 
FileSystemWatcher 用法
                    watcher.Changed += new FileSystemEventHandler(OnChanged); 
FileSystemWatcher 用法                    watcher.Created 
+= new FileSystemEventHandler(OnCreated); 
FileSystemWatcher 用法                    watcher.Deleted 
+= new FileSystemEventHandler(OnChanged); 
FileSystemWatcher 用法                    watcher.Renamed 
+= new RenamedEventHandler(OnChanged); 
FileSystemWatcher 用法
FileSystemWatcher 用法                    
// Begin watching. 
FileSystemWatcher 用法
                    watcher.EnableRaisingEvents = true
FileSystemWatcher 用法             
FileSystemWatcher 用法            }
       
FileSystemWatcher 用法        }

 
FileSystemWatcher 用法        

public
 
void
 OnChanged(
object
 source, FileSystemEventArgs e)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            
//文件改變後的代碼
FileSystemWatcher 用法
        }


FileSystemWatcher 用法
FileSystemWatcher 用法        

public
 
void
 OnCreated(
object
 source, FileSystemEventArgs e)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            
//添加文件後的代碼
FileSystemWatcher 用法
        }


FileSystemWatcher 用法
FileSystemWatcher 用法        

public
 
void
 OnDeleted(
object
 source, FileSystemEventArgs e)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            
//文件刪除後的代碼
FileSystemWatcher 用法
        }


FileSystemWatcher 用法
FileSystemWatcher 用法        

public
 
void
 OnRenamed(
object
 source, RenamedEventArgs e)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            
//文件重命名後的代碼
FileSystemWatcher 用法
         }

 
FileSystemWatcher 用法
FileSystemWatcher 用法

使用System.IO.FileSystemWatcher时,通常会想在检测到文件创建之后,扫描文件的内容,对之进行一定的处理。但是当我们的程序接到通知时,创建文件的进程可能还在写数据,这时如果想要打开这个文件会抛出异常。

似乎没有什么好办法来解决这个问题,除了最笨的一种:

 

FileSystemWatcher 用法
FileSystemWatcher watcher 
=
 
new
 FileSystemWatcher(directory, 

*.txt

);
FileSystemWatcher 用法       watcher.NotifyFilter 

=
 NotifyFilters.FileName;
FileSystemWatcher 用法       watcher.Created 

+=
 FileCreated;
FileSystemWatcher 用法       watcher.EnableRaisingEvents 

=
 
true
;
FileSystemWatcher 用法
FileSystemWatcher 用法        

private
 
void
 FileCreated(
object
 sender, FileSystemEventArgs e)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            
while (!IsFileReady(e.FullPath))
FileSystemWatcher 用法FileSystemWatcher 用法            
{

FileSystemWatcher 用法                
if (!File.Exists(e.FullPath))
FileSystemWatcher 用法                    
return;
FileSystemWatcher 用法                Thread.Sleep(
100);
FileSystemWatcher 用法            }

FileSystemWatcher 用法            
//在这里进行文件处理。。。
FileSystemWatcher 用法
        }


FileSystemWatcher 用法
FileSystemWatcher 用法        

bool
 IsFileReady(
string
 filename)
FileSystemWatcher 用法FileSystemWatcher 用法        


{

FileSystemWatcher 用法            FileInfo fi 
= new FileInfo(filename);
FileSystemWatcher 用法            FileStream fs
=null;
FileSystemWatcher 用法            
try
FileSystemWatcher 用法FileSystemWatcher 用法            
{

FileSystemWatcher 用法                 fs 
= fi.Open(FileMode.Open, FileAccess.ReadWrite,
FileSystemWatcher 用法            FileShare.None);
FileSystemWatcher 用法                 
return true;
FileSystemWatcher 用法            }

FileSystemWatcher 用法
FileSystemWatcher 用法            
catch(IOException)
FileSystemWatcher 用法FileSystemWatcher 用法            
{

FileSystemWatcher 用法                
return false;
FileSystemWatcher 用法            }

FileSystemWatcher 用法
FileSystemWatcher 用法            
finally
FileSystemWatcher 用法FileSystemWatcher 用法            
{

FileSystemWatcher 用法                        
if(fs!=null)
FileSystemWatcher 用法                            fs.Close();
FileSystemWatcher 用法            }

FileSystemWatcher 用法        }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/149928.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • 如何自己搭建服务器_文件服务器搭建

    如何自己搭建服务器_文件服务器搭建FlashFXP使用其实就是为了实现文件的上传和下载,它要结合

  • 2021最强Python学习教程,从零基础入门到精通

    2021最强Python学习教程,从零基础入门到精通你准备好了吗???areyouready???前言01.python介绍02.项目开发完整流程(详解版)03.项目开发流程(精简版)第一篇计算机核心基础01计算机组成原理第二篇编程语言01编程语言介绍第三篇python入门01python介绍及IDE集成开发环境02python是解释型的强类型动态语言03python语法之变量、常量04python语法之注释05python垃圾回收机制GC06Python语法入门之基本数据类型07Python语法

  • Android代码混淆及反编译

    Android代码混淆及反编译如果你目前还是一名学生或是没有在应用商店中上传过应用,恐怕对此的感受不深。而在企业中对Java代码的混淆却是一步很重要的步骤,从安全的角度来说,代码混淆,防止居心不良的人对代码进行恶意篡改非常重要。下面就是对Android项目进行的代码混淆和加密签名过程。

  • linux内存管理之 ION 内存管理器浅析Ⅱ(system contig heap)

    linux内存管理之 ION 内存管理器浅析Ⅱ(system contig heap)目录1systemcontigheap与systemheap2systemcontigheap创建3systemcontigheap内存分配4systemcontigheap内存释放1systemcontigheap与systemheap从代码中我们看到systemcontigheap与systemheap同属一个文件中,ion_system_heap.c相同点:它们都是根据用户传递的字节len,转换成order,从buddy中

    2022年10月23日
  • 重新认识Attributes.add

    重新认识Attributes.add昨天自己学习别人的编码,发现了控件ID.Attributes.add("","");用法,于是自己查来看,中间闹了不少的笑话;首先自己就搜错了对象,C#里有

  • 语音合成综述

    语音合成综述title:语音合成综述tags:新建,模板,小书匠grammar_cjkRuby:true语音相关基础知识点:时域信号:一维原始信号傅里叶变换:得到频域特征短时傅里叶变换:傅里叶变换得到了频域信号,但是丢失了时域信号,所欲通过STFT得到时频信号梅尔频谱倒谱系数:单单频率信号表达不足,为了更加和人的耳朵听觉相符,我们使用了mel窗滤波,得到人耳的频率段幅度系数梅尔声谱…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号