gpt4 book ai didi

file - 使用 Windows 批处理命令循环直到文件存在

转载 作者:行者123 更新时间:2023-12-04 05:06:38 24 4
gpt4 key购买 nike

如何将以下代码转换为 Windows 批处理命令?

这是一个 perl 脚本,它在 while 循环中搜索文件,如果找到则退出。

use strict;
use warnings;
my $filename = 'something.txt';
while (1) {

if (-e $filename) {
print "File Exists!";
exit;
}

}

最佳答案

这是一个相当直接的翻译。代码应该是不言自明的:

@ECHO OFF
SET LookForFile="C:\Path\To\File.txt"

:CheckForFile
IF EXIST %LookForFile% GOTO FoundIt

REM If we get here, the file is not found.

REM Wait 60 seconds and then recheck.
REM If no delay is needed, comment/remove the timeout line.
TIMEOUT /T 60 >nul

GOTO CheckForFile


:FoundIt
ECHO Found: %LookForFile%

关于file - 使用 Windows 批处理命令循环直到文件存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27906705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com