gpt4 book ai didi

windows - 系统找不到指定的路径 - 批处理文件

转载 作者:可可西里 更新时间:2023-11-01 11:52:35 26 4
gpt4 key购买 nike

我使用下面的批处理脚本在多个文本文件中搜索 ID 列表(在一个文本文件中)。它工作正常。但是今天我收到错误系统找不到指定的路径。当我运行相同的批处理脚本时。我交叉验证了路径和路径是否正确。谁能帮我解决这个问题。

我使用的批处理脚本

@echo off
setlocal enableextensions disabledelayedexpansion

set "manifest_folder=\\vfiler-padhu\padhu\*.txt"
set "file_list=\\vfiler-padhu\padh\File_list.txt"
set "tmpFile=\\vfiler-padhu\padh\tmpFile.txt"

(for /f "usebackq delims=" %%a in ("%file_list%") do (
set "found="
for /f "delims=" %%b in ('findstr /l /m /c:"%%a" "%manifest_folder%"') do (
echo %%a is found in %%~nxb
set "found=1"
)
if not defined found (
echo %%a is not found
)
)) > "%outputFile%"

提前致谢

最佳答案

outputFile 未定义; tmpFile 未使用。否则,看起来还不错。

关于windows - 系统找不到指定的路径 - 批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26750264/

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