0

我希望我的脚本:

  • 接受一个变量
  • 使用该变量作为输入创建路径
  • 显示路径
  • 显示目录的内容

以下代码有什么问题?该ECHO语句仅打印Your directory is set to;该DIR声明按预期工作。

@ECHO OFF
SET custompath = "C:\Users\%1"
ECHO  Your directory is set to %custompath%
DIR %custompath%
4

2 回答 2

2

这是周围的空间=

@ECHO OFF
SET custompath="C:\Users\%1"
ECHO  Your directory is set to %custompath%
DIR %custompath%

检查这篇文章

于 2013-05-09T20:56:55.007 回答
0

就个人而言,我会这样做:

@ECHO OFF
SET /P "custompath=Enter a custom windows path: "
ECHO Showing contents of directory ^"%custompath%^"
DIR /b "%custompath%"
pause
于 2013-05-09T23:45:13.227 回答