在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#文件和网络监视器

C#文件和网络监视器

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.86M
  • 下载次数:21
  • 浏览次数:80
  • 发布时间:2023-07-14
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 监视 网络 文件 C#

实例介绍

【实例简介】C#文件和网络监视器
监视磁盘上的文件变化,后台运行可以知道别人在你电脑上干了什么。 同时支持监视联网进程,可直观的监视到不安全的联网进程。

【实例截图】

from clipboard

【核心代码】
文件清单
└── FileWatcher
    ├── FileWatcher
    │   ├── 13.ico
    │   ├── 14.ico
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── error.ico
    │   │   │   ├── FileWatcher.exe
    │   │   │   ├── FileWatcher.pdb
    │   │   │   ├── FileWatcher.vshost.exe
    │   │   │   └── FileWatcher.vshost.exe.manifest
    │   │   └── Release
    │   ├── Cmd.cs
    │   ├── FileWatcher.csproj
    │   ├── MyListView.cs
    │   ├── obj
    │   │   └── Debug
    │   │       ├── DesignTimeResolveAssemblyReferences.cache
    │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │       ├── FileWatcher.csproj.FileListAbsolute.txt
    │   │       ├── FileWatcher.csproj.GenerateResource.Cache
    │   │       ├── FileWatcher.exe
    │   │       ├── FileWatcher.pdb
    │   │       ├── FileWatcher.Properties.Resources.resources
    │   │       ├── FileWatcher.Watcher.resources
    │   │       ├── GenerateResource-ResGen.read.1.tlog
    │   │       ├── GenerateResource-ResGen.write.1.tlog
    │   │       ├── Refactor
    │   │       └── TempPE
    │   │           └── Properties.Resources.Designer.cs.dll
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Watcher.cs
    │   ├── Watcher.Designer.cs
    │   └── Watcher.resx
    ├── FileWatcher.sln
    ├── FileWatcher.suo
    ├── _ReSharper.FileWatcher
    │   ├── AspFileDataCache.dat
    │   ├── AssemblyInfoCache.dat
    │   ├── BuildScriptCache
    │   │   └── 0
    │   │       └── 71c45dc9.dat
    │   ├── ConditionalNames
    │   │   └── 7
    │   │       └── 1b11b56e.dat
    │   ├── GeneratedFiles
    │   │   └── 7
    │   │       └── 1b11b56e.dat
    │   ├── JavaScriptCache
    │   │   └── 6
    │   │       └── 56f934a4.dat
    │   ├── JSTest
    │   ├── ModuleIds.xml
    │   ├── MVC
    │   ├── MvcAnnotations
    │   │   └── 3
    │   │       └── 27fc022.dat
    │   ├── NamedArguments
    │   │   └── 0
    │   │       └── 2993e3ed.dat
    │   ├── Pdb
    │   │   └── 35ee9af585f7bbcd47663941e71516281a4d7294
    │   ├── PersistentCaches
    │   │   ├── 000015.log
    │   │   ├── 000016.sst
    │   │   ├── CURRENT
    │   │   ├── LOCK
    │   │   ├── LOG
    │   │   ├── LOG.old
    │   │   └── MANIFEST-000013
    │   ├── ProjectFileDataCache
    │   │   ├── ResourceDefaultLanguagePropertyProvider.cache.dat
    │   │   └── ShouldUseHostCompilerProvider.cache.dat
    │   ├── RecentItems
    │   │   └── RecentFiles.dat
    │   ├── Resources
    │   │   └── 3
    │   │       └── 48770625.dat
    │   ├── SymbolCache.bin
    │   ├── TagPrefixes
    │   ├── WebSymbols
    │   └── XmlIndex
    │       ├── mscorlib.2.0.0.0.Contracts.xml
    │       │   └── 673AA301.bin
    │       ├── mscorlib.2.0.0.0.Interfaces.Nullness.Generated.xml
    │       │   └── 2B4A2449.bin
    │       ├── mscorlib.2.0.0.0.Nullness.Generated.xml
    │       │   └── 97F1D9F1.bin
    │       ├── mscorlib.2.0.0.0.Pure.xml
    │       │   └── 51815B32.bin
    │       ├── mscorlib.I18n.xml
    │       │   └── 71E4BE4C.bin
    │       ├── mscorlib.Nullness.Manual.xml
    │       │   └── 711FB186.bin
    │       ├── mscorlib.Pure.Manual.xml
    │       │   └── B4E859A4.bin
    │       ├── mscorlib.ValueFlow.xml
    │       │   └── 6B370CBB.bin
    │       ├── mscorlib.xml
    │       │   └── 5D27D8EC.bin
    │       ├── System.2.0.0.0.Contracts.xml
    │       │   └── 49187C81.bin
    │       ├── System.2.0.0.0.Nullness.Generated.xml
    │       │   └── DCBC6371.bin
    │       ├── System.2.0.0.0.Pure.xml
    │       │   └── 397144B2.bin
    │       ├── System.Configuration.2.0.0.0.Contracts.xml
    │       │   └── 24BEDD41.bin
    │       ├── System.Configuration.2.0.0.0.Nullness.Generated.xml
    │       │   └── C4D41831.bin
    │       ├── System.Configuration.2.0.0.0.Pure.xml
    │       │   └── 6A654CF2.bin
    │       ├── System.Configuration.Install.2.0.0.0.Contracts.xml
    │       │   └── 3C5C8AE1.bin
    │       ├── System.Configuration.Install.2.0.0.0.Nullness.Generated.xml
    │       │   └── AB960D91.bin
    │       ├── System.Core.3.5.0.0.Contracts.xml
    │       │   └── 2AEDAD25.bin
    │       ├── System.Core.3.5.0.0.Nullness.Generated.xml
    │       │   └── 7FB11555.bin
    │       ├── System.Core.3.5.0.0.Pure.xml
    │       │   └── 2CFCB856.bin
    │       ├── System.Core.LinqTunnel.xml
    │       │   └── 38E038F0.bin
    │       ├── System.Core.Nullness.Manual.xml
    │       │   └── 0BEFF2E6.bin
    │       ├── System.Core.Pure.Manual.xml
    │       │   └── 990D2784.bin
    │       ├── System.Core.xml
    │       │   └── C79339FF.bin
    │       ├── System.Data.2.0.0.0.Contracts.xml
    │       │   └── DA6DF5A1.bin
    │       ├── System.Data.2.0.0.0.Nullness.Generated.xml
    │       │   └── 49ACEE51.bin
    │       ├── System.Data.2.0.0.0.Pure.xml
    │       │   └── 997BA152.bin
    │       ├── System.Data.DataSetExtensions.3.5.0.0.Nullness.Generated.xml
    │       │   └── 927D9BD5.bin
    │       ├── System.Data.DataSetExtensions.I18n.xml
    │       │   └── 094FA76C.bin
    │       ├── System.Data.DataSetExtensions.xml
    │       │   └── C95F1C82.bin
    │       ├── System.Data.I18n.xml
    │       │   └── D6E32E6C.bin
    │       ├── System.Data.OracleClient.2.0.0.0.Nullness.Generated.xml
    │       │   └── 1B439D11.bin
    │       ├── System.Data.SqlXml.2.0.0.0.Nullness.Generated.xml
    │       │   └── 891A8411.bin
    │       ├── System.Deployment.2.0.0.0.Nullness.Generated.xml
    │       │   └── 213733D1.bin
    │       ├── System.Design.2.0.0.0.Nullness.Generated.xml
    │       │   └── E848CE11.bin
    │       ├── System.DirectoryServices.2.0.0.0.Nullness.Generated.xml
    │       │   └── C47BC9D1.bin
    │       ├── System.DirectoryServices.Protocols.2.0.0.0.Nullness.Generated.xml
    │       │   └── B4D33F31.bin
    │       ├── System.Drawing.2.0.0.0.Contracts.xml
    │       │   └── BF331981.bin
    │       ├── System.Drawing.2.0.0.0.Nullness.Generated.xml
    │       │   └── 4B17A071.bin
    │       ├── System.Drawing.Design.2.0.0.0.Nullness.Generated.xml
    │       │   └── B7691991.bin
    │       ├── System.Drawing.Pure.xml
    │       │   └── 09FB88F0.bin
    │       ├── System.EnterpriseServices.2.0.0.0.Nullness.Generated.xml
    │       │   └── 448D2FD1.bin
    │       ├── System.I18n.xml
    │       │   └── 934327CC.bin
    │       ├── System.Nullness.Manual.xml
    │       │   └── 86B92B06.bin
    │       ├── System.Runtime.Remoting.2.0.0.0.Nullness.Generated.xml
    │       │   └── 8BB0DE91.bin
    │       ├── System.Runtime.Serialization.Formatters.Soap.2.0.0.0.Contracts.xml
    │       │   └── 26D2D201.bin
    │       ├── System.Runtime.Serialization.Formatters.Soap.2.0.0.0.Nullness.Generated.xml
    │       │   └── 532EE8F1.bin
    │       ├── System.Runtime.Serialization.Formatters.Soap.4.0.0.0.Contracts.xml
    │       │   └── 45517587.bin
    │       ├── System.Security.2.0.0.0.Contracts.xml
    │       │   └── 34FE5721.bin
    │       ├── System.Security.2.0.0.0.Nullness.Generated.xml
    │       │   └── 8C82FFD1.bin
    │       ├── System.Security.2.0.0.0.Pure.xml
    │       │   └── 166912D2.bin
    │       ├── System.ServiceProcess.2.0.0.0.Nullness.Generated.xml
    │       │   └── 342D5C51.bin
    │       ├── System.Transactions.2.0.0.0.Nullness.Generated.xml
    │       │   └── 02055FD1.bin
    │       ├── System.Web.2.0.0.0.Contracts.xml
    │       │   └── A5841E01.bin
    │       ├── System.Web.2.0.0.0.Nullness.Generated.xml
    │       │   └── 0C15B4F1.bin
    │       ├── System.Web.2.0.0.0.Pure.xml
    │       │   └── 1231F632.bin
    │       ├── System.Web.Attributes.xml
    │       │   └── 9871EBED.bin
    │       ├── System.Web.I18n.xml
    │       │   └── 652A594C.bin
    │       ├── System.Web.Services.2.0.0.0.Nullness.Generated.xml
    │       │   └── 5CA0CED1.bin
    │       ├── System.Web.Services.Attributes.xml
    │       │   └── E1A0020D.bin
    │       ├── System.Windows.Forms.2.0.0.0.Contracts.xml
    │       │   └── 9DA64E01.bin
    │       ├── System.Windows.Forms.2.0.0.0.Nullness.Generated.xml
    │       │   └── 45ADE4F1.bin
    │       ├── System.Windows.Forms.2.0.0.0.Pure.xml
    │       │   └── B0362632.bin
    │       ├── System.Windows.Forms.I18n.xml
    │       │   └── 19FE894C.bin
    │       ├── System.Windows.Forms.Manual.xml
    │       │   └── 13477EB8.bin
    │       ├── System.xml
    │       │   └── 1DFE526C.bin
    │       ├── System.Xml.2.0.0.0.Contracts.xml
    │       │   └── 5C33CFE1.bin
    │       ├── System.Xml.2.0.0.0.Nullness.Generated.xml
    │       │   └── 666AF291.bin
    │       ├── System.Xml.2.0.0.0.Pure.xml
    │       │   └── F702B412.bin
    │       ├── System.Xml.Attributes.xml
    │       │   └── 5771B44D.bin
    │       ├── System.Xml.I18n.xml
    │       │   └── 5FD1112C.bin
    │       ├── System.Xml.Linq.3.5.0.0.Contracts.xml
    │       │   └── 03C63525.bin
    │       ├── System.Xml.Linq.3.5.0.0.Nullness.Generated.xml
    │       │   └── 68A29D55.bin
    │       ├── System.Xml.Linq.3.5.0.0.Pure.xml
    │       │   └── F2604056.bin
    │       ├── System.Xml.Linq.I18n.xml
    │       │   └── 459E88EC.bin
    │       └── System.Xml.Linq.xml
    │           └── C650FFA9.bin
    ├── UpgradeLog.XML
    └── _UpgradeReport_Files
        ├── UpgradeReport.css
        ├── UpgradeReport_Minus.gif
        ├── UpgradeReport_Plus.gif
        └── UpgradeReport.xslt

111 directories, 135 files

标签: 监视 网络 文件 C#

实例下载地址

C#文件和网络监视器

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警