0
這裏我寫了一個腳本,該腳本應該執行當前目錄中的所有文件。他們是批處理文件。使用TCL在窗口上執行大量批處理文件
set path [pwd]
append path "/"
set files [glob *]
foreach file $files {
exec cmd.exe /c ${path}$file
}
,但我得到了以下錯誤:
The system cannot find the path specified.