当前位置:  开发笔记 > 编程语言 > 正文

如何测试文件列表是否存在?

如何解决《如何测试文件列表是否存在?》经验,为你挑选了2个好方法。

我有一个列出文件名的文件,每个文件都在它自己的行上,我想测试每个文件名是否存在于特定的目录中.例如,文件的某些示例行可能是

mshta.dll
foobar.dll
somethingelse.dll

我感兴趣的目录是X:\Windows\System32\,所以我想看看是否存在以下文件:

X:\Windows\System32\mshta.dll
X:\Windows\System32\foobar.dll
X:\Windows\System32\somethingelse.dll

如何使用Windows命令提示符执行此操作?另外(出于好奇)我如何使用bash或其他Unix shell做到这一点?



1> JesperE..:

击:

while read f; do 
    [ -f "$f" ] && echo "$f" exists
done < file.txt



2> tzot..:

在cmd.exe中,FOR/F%变量 IN( 文件名 )DO 命令应该为您提供所需的内容.此读取的内容文件名(和它们可以是多于一个的文件名)在每次一行,放置在%变量行(或多或少;做有助于为在命令提示).如果没有其他人提供命令脚本,我会尝试.

编辑:我尝试执行所请求的cmd.exe脚本:

@echo off
rem first arg is the file containing filenames
rem second arg is the target directory

FOR /F %%f IN (%1) DO IF EXIST %2\%%f ECHO %%f exists in %2

注意,上面的脚本必须是脚本; .cmd或.bat文件中的FOR循环,由于某些奇怪的原因,在其变量之前必须有双百分号.

现在,对于一个与bash | ash | dash | sh | ksh一起使用的脚本:

filename="${1:-please specify filename containing filenames}"
directory="${2:-please specify directory to check}
for fn in `cat "$filename"`
do
    [ -f "$directory"/"$fn" ] && echo "$fn" exists in "$directory"
done

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有