0
我想在命令行運行此命令:變量是意想不到的這個時候
for /f %fpath in ('dir %1 /s /b /a-d /o:gn') do echo %fpath
我得到一個錯誤:
%fpath was unexpected at this time.
什麼是錯在我的命令?
我想在命令行運行此命令:變量是意想不到的這個時候
for /f %fpath in ('dir %1 /s /b /a-d /o:gn') do echo %fpath
我得到一個錯誤:
%fpath was unexpected at this time.
什麼是錯在我的命令?
發現問題。
變量必須是單字母變量。 此編碼適用於:
for /f %P in ('dir %1 /s /b /a-d /o:gn') do echo %P