Board logo

标题: [文件操作] 批处理怎样把桌面文件复制到U盘? [打印本页]

作者: 2hen9x1    时间: 2020-3-28 16:14     标题: 批处理怎样把桌面文件复制到U盘?

想把桌面的某个文件夹内的固定的文件,重命名成当前用户名以后,复制到U盘的特定路径下

比如当前用户名为abc
文件:desktop\a\a.txt
重名成当前用户名:abc.txt
拷贝到U盘

拷贝到U盘已经会了,就是前面2步不会,求大神帮忙
作者: Batcher    时间: 2020-3-28 18:43

回复 1# 2hen9x1


test.bat
  1. @echo off
  2. ren "%userprofile%\desktop\a\a.txt" "%username%.txt"
  3. copy /y "%userprofile%\desktop\a\%username%.txt" "U:\"
复制代码

作者: 2hen9x1    时间: 2020-3-29 08:59

回复 2# Batcher

get了桌面的路径表达方式。
作者: Batcher    时间: 2020-3-29 10:47

回复 3# 2hen9x1


    打开一个CMD窗口,执行 set 命令,能看到其它环境变量的定义




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2