我希望我的脚本:
- 接受一个变量
- 使用该变量作为输入创建路径
- 显示路径
- 显示目录的内容
以下代码有什么问题?该ECHO
语句仅打印Your directory is set to
;该DIR
声明按预期工作。
@ECHO OFF
SET custompath = "C:\Users\%1"
ECHO Your directory is set to %custompath%
DIR %custompath%
我希望我的脚本:
以下代码有什么问题?该ECHO
语句仅打印Your directory is set to
;该DIR
声明按预期工作。
@ECHO OFF
SET custompath = "C:\Users\%1"
ECHO Your directory is set to %custompath%
DIR %custompath%
这是周围的空间=
。
@ECHO OFF
SET custompath="C:\Users\%1"
ECHO Your directory is set to %custompath%
DIR %custompath%
检查这篇文章。
就个人而言,我会这样做:
@ECHO OFF
SET /P "custompath=Enter a custom windows path: "
ECHO Showing contents of directory ^"%custompath%^"
DIR /b "%custompath%"
pause