本文介绍了FileSystemWatcher的下模拟的用户运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有在本地帐户下运行,但需要监控站点上的文件夹的C#WinForm应用程序。我使用稍微修改代码,包括这个类在你的项目不是简单地放置一个使用块内的FileSystemWatcher的像这样的:

Yes, there is a good impersonation class here, include this class in your project and than simply place your FileSystemWatcher within a using block like this:

using ( new Impersonator( "myUsername", "myDomainname", "myPassword" ) )
{
   ...

   <code that executes under the new context>

   ...
}

这篇关于FileSystemWatcher的下模拟的用户运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 11:45