今天公司发来一个笔试题,这个Java程序我会,但是这个公司要求 开发一个.bat工具
,直接运行Java程序。这个程序就是遍历目录和其下的子目录,找到名字
为good.xml的文件,然后输出good.xml文件的路径。
比如运行如下命令:
Search.bat -f "good.xml"
我不太明白的是这个. search.bat 工具文件该如何开发。 我网上看了看.bat批处理编
程,知道可以用%1 %2 传递参数(good.xml 和 directory目录名)进入这个search.
bat,但是 -f 的参数如何实现,就没有找到,所以,轻问大家如何去实现?
The program should traverse the directory hierarchy starting with
> and print to the console a list of files whose names match the text
specified by the -f option.
l*****a 发帖数: 14598
2
-f is %1.
good.xml is %2
directory
【在 s********e 的大作中提到】 : 今天公司发来一个笔试题,这个Java程序我会,但是这个公司要求 开发一个.bat工具 : ,直接运行Java程序。这个程序就是遍历目录和其下的子目录,找到名字 : 为good.xml的文件,然后输出good.xml文件的路径。 : 比如运行如下命令: : Search.bat -f "good.xml" : 我不太明白的是这个. search.bat 工具文件该如何开发。 我网上看了看.bat批处理编 : 程,知道可以用%1 %2 传递参数(good.xml 和 directory目录名)进入这个search. : bat,但是 -f 的参数如何实现,就没有找到,所以,轻问大家如何去实现? : The program should traverse the directory hierarchy starting with : > and print to the console a list of files whose names match the text
s********e 发帖数: 340
3
谢谢!
【在 l*****a 的大作中提到】 : -f is %1. : good.xml is %2 : : directory