如何使用任务计划程序检测文件

如何使用任务计划程序检测文件

我只是想知道。任务调度程序是否可以检测文件?我发现最接近这个问题的是科技网。有人能给我指点一下吗?谢谢。

答案1

您可以计划运行一个批处理(.bat),其中可能包含这样的代码:

if exist <insert file name here> (
    rem file exists
) else (
    rem file doesn't exist
)

或者用一行来表示单个操作:

if exist <insert file name here> <action>

有关详细信息和示例,请参阅 IF 命令

相关内容