从find命令中提取DOS目录

时间:2012-11-27 05:16:32

标签: directory find dos

我正在编写一个dos脚本,我想获取已知文件的路径,以便可以在脚本中使用该路径更改到该目录以使用指定的文件并将日志文件输出到同一目录

该脚本将一些目录添加到路径中,并更改为所需目录,以使用同一目录中的输入文件执行命令。该命令生成许多保存到同一目录的文件。

这是我到目前为止所拥有的

@ECHO OFF

:: Check argument count
set argC=0
for %%x in (%*) do Set /A argC+=1

IF %argC% LSS 3 (echo WARNING must include the parent Directory, the filename and the timestep for the simulation)

:: Assign meaningfull names to the input arguments
set parentDirectory=%1
set filename=%2
set scenarioTimestep=%3

:: Check validaty of the input arguments
:: TODO: implement check for directory, filename exists, and possibly limits to the timestep 
IF "%parentDirectory%"=="" (
    set parentDirectory=P:Parent\Directory
) 
IF "%filename%"=="" (
    set filename=ship2.xmf
) 
IF "%scenarioTimestep%"=="" (
    set scenarioTimestep=0.1
) 

echo parent Directory: %parentDirectory%
echo filename: %filename%
echo timestep: %scenarioTimestep%

set MSTNFYURI=file:mst.log
set MSTNFYLEVEL=debug
set MSTNFYFLUSH=1

set XSFNFYURI=file:xsf.log
set XSFNFYLEVEL=debug
set XSFNFYFLUSH=1

set parentNFYURI=file:parent.log
set parentNFYLEVEL=debug
set parentNFYFLUSH=1

:: Add the parent directories to the path
set PATH=%parentDirectory%\bin\;%parentDirectory%\bin\ext\;%parentDirectory%\bin\gtkmm\;%parentDirectory%\bin\osg\;%PATH%

:: Change to the target directoy
set tagetDirectory=%parentDirectory%\examples\testing_inputs
cd %tagetDirectory%

echo command will be: ft -c %filename% -T %scenarioTimestep%
::ft -c %filename% -T %scenarioTimestep%

@ECHO ON

我希望能够做的不是使用targetDirectoy的硬编码目录路径examples \ testing_inputs,我希望能够搜索提供的文件名并将目录更改为该路径。

我知道我可以使用显示的信息 “dir filename.ext / s”

DOS ouptut

Volume in drive C is OS
Volume Serial Number is XXXX-XXXX

Directory of C:\Users\Me\parent\examples\testing_input

15/11/2012   02:51 PM    <size> filename
...
...

如何从脚本中提取此信息的目录?此外,如果有多个同名文件,我如何根据文件的时间戳选择路径?

1 个答案:

答案 0 :(得分:2)

for /f %%F in ('dir /B /S /A:-D  filename.ext ') do set file_path=%%F
pushd  %file_path%\..
dir_path=%CD%
popd
echo %file_path%
echo %dir_path%

这就是你要找的东西吗?

编辑:查看dbenham的评论。