基于 Windows 服务的软件,每次文件到达时运行脚本

基于 Windows 服务的软件,每次文件到达时运行脚本

有谁知道有这样一种基于服务的工具,每次文件到达目录时我都可以运行脚本吗?我会编写脚本,我想要的只是这个工具是一个基于服务的应用程序。

答案1

您可以使用 .NET 类编写服务文件系统观察器更多信息请访问这个问题

答案2

strComputer = "."

设置 objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=模拟}!\\" & _
    strComputer & "\root\cimv2")

设置 colMonitoredEvents = objWMIService.ExecNotificationQuery _
    (“从 __InstanceCreationEvent 中选择 * 在 5 个位置” _
    & "目标实例是‘CIM_DirectoryContainsFile’并且" _
    & "目标实例.组组件=" _
    & "'Win32_Directory.Name=""c:\\\\scripts""'")

    设置 objLatestEvent = colMonitoredEvents.NextEvent
    Wscript.Echo objLatestEvent.TargetInstance.PartComponent
环形

相关内容