0

在这里,我编写了一个脚本,该脚本应该执行当前目录中的所有文件。它们是批处理文件。

set path [pwd]
append path "/"
set files [glob *]
foreach file $files {
    exec cmd.exe /c ${path}$file
}

但我收到以下错误:

The system cannot find the path specified.
4

1 回答 1

1

问题不在脚本中,而在批处理文件中。其中有一些使用路径的命令不存在。

于 2012-09-28T14:27:24.157 回答