Answers:
您可以使用Windows环境变量。在这种情况下可以使用的是%username%
,它返回当前用户的名称。
即:
start c:\users\%username%\Whatever
另外/或者,如果您专门针对用户的配置文件文件夹(<drive>:\users\<username>
),则可以使用%userprofile%
变量,该变量将返回当前用户的配置文件的完整路径,这在定位较早的操作系统(如XP)(<drive>:\document and settings\<username>
默认为XP)时会有所帮助,或配置文件文件夹已移动到其他驱动器/位置的位置。
即:
start %userprofile%\Whatever
您可能会发现其中的其他一些变量对于编写批处理很有用,我建议您仔细阅读整个列表。:)
e:\users
和d:\documents and settings
...