标题: [文件操作] 批处理怎样移动桌面文件到指定文件夹 [打印本页]
作者: swanseabrian 时间: 2021-9-26 18:41 标题: 批处理怎样移动桌面文件到指定文件夹
移动桌面doc docx两种到 d盘文档文件夹
移动桌面pdf文件到 d盘文档pdf文件夹
移动桌面caj文件到 d盘文档caj文件夹
这个怎么搞,
可以定时移动吗,
第隔一小时移动一次,这样,
谢谢
作者: cmd1152 时间: 2021-9-26 21:48
本帖最后由 cmd1152 于 2021-9-26 21:56 编辑
说的不是很详细..
在桌面运行- @echo off
- set t=1
- :i
- echo 第%t%次移动,下一次移动是在1小时后。
- set /a t=t+1
- for /f %%i in ('dir /b *.doc') do (
- if exist "D:\文档" (md D:\文档)
- copy %%i D:\文档\%%i
- )
- for /f %%i in ('dir /b *.docx') do (
- copy %%i D:\文档\%%i
- )
- for /f %%i in ('dir /b *.pdf') do (
- if exist "D:\文档\pdf" (md D:\文档\pdf)
- copy %%i D:\文档\pdf\%%i
- )
- for /f %%i in ('dir /b *.caj') do (
- if exist "D:\文档\caj" (md D:\文档\caj)
- copy %%i D:\文档\caj\%%i
- )
- ping 1.127 -n 3600 -w 1000
- goto :i
复制代码
作者: swanseabrian 时间: 2021-9-26 21:55
回复 2# cmd1152
不 是for /f 吗用for /l 啥意思
作者: cmd1152 时间: 2021-9-26 21:57
回复 3# swanseabrian
抱歉,最近和VB肝上了,分不清了...
作者: cmd1152 时间: 2021-9-26 22:02
回复 3# swanseabrian
你想知道 新的文件 - 扩展\桌面翻转.exe 是什么意思吗?
作者: swanseabrian 时间: 2021-9-26 22:09
回复 5# cmd1152
看不明白
学vb干啥,怎么不没c#
作者: cmd1152 时间: 2021-9-26 22:16
回复 6# swanseabrian
看看我的作品?
作者: cmd1152 时间: 2021-9-26 22:30
回复 6# swanseabrian
http://bbs.bathome.net/thread-60156-1-1.html
作者: cmd1152 时间: 2021-9-26 22:38
回复 6# swanseabrian
http://bbs.bathome.net/thread-60154-1-1.html
作者: hztccy 时间: 2021-9-26 23:41
- @echo off
-
- robocopy "%userprofile%\Desktop" "D:\文档文件夹" *.doc *.docx /mov /s
- robocopy "%userprofile%\Desktop" "D:\PDF文件夹" *.pdf /mov /s
- robocopy "%userprofile%\Desktop" "D:\CAJ文件夹" *.caj /mov /s
-
- pause
复制代码
作者: swanseabrian 时间: 2021-9-27 07:54
回复 10# hztccy
这个命令没用过还,
作者: swanseabrian 时间: 2021-9-27 07:55
回复 9# cmd1152
就发个新闻也是作品呀
作者: hztccy 时间: 2021-9-27 11:04
回复 11# swanseabrian
有时候简单命令能完成的,不一定非要for出处理。
当然for学会了,也能做很多事。
作者: cmd1152 时间: 2021-9-27 13:08
回复 12# swanseabrian
不是,我只是发新闻,没有说是作品!
作者: cmd1152 时间: 2021-9-27 13:09
回复 12# swanseabrian
你没有看到7楼的 去看看 按钮?
作者: Batcher 时间: 2021-9-27 14:53
回复 11# swanseabrian
多用用,慢慢就熟悉了。不能总停留在自己见过的那几个命令。
http://bbs.bathome.net/thread-6283-1-1.html
作者: swanseabrian 时间: 2021-9-27 15:08
回复 16# Batcher
好的,谢谢
作者: 极品小猫 时间: 2021-9-29 09:20
回复 16# Batcher
我记得微软还出了个GUI的工具,前两天搜索,发现官网的链接下不到了
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |