标题: [文本处理] [已解决]批处理递归遍历文本夹里的所有txt,改名导入excel [打印本页]
作者: swanseabrian 时间: 2021-9-19 15:53 标题: [已解决]批处理递归遍历文本夹里的所有txt,改名导入excel
递归遍历文本夹里的所有txt,改名导入excel
excel里的形势就是
ren 1.txt 01.txt
..
.l...
ren 100.txt 0100.txt
数量多少看txt有多少- @echo off
- for /f "delims=" %%a in ('dir /b *.txt) do
-
- (echo ren "%%a" "xxx")>"1.csv"
- pause
复制代码
这样写,说是命令语法不正确,请指教
作者: idwma 时间: 2021-9-19 17:00
- @echo off
- (for /f "delims=" %%a in ('dir /b *.txt) do (echo ren "%%a" "0%%a"))>"1.csv"
- pause
复制代码
作者: Batcher 时间: 2021-9-20 08:28
回复 1# swanseabrian
如果最终的目的就是重命名txt文件,那么不需要使用excel浪费时间。- @echo off
- cd /d "%~dp0"
- for /f "delims=" %%i in ('dir /b /a-d *.txt') do (
- ren "%%i" "0%%i"
- )
复制代码
作者: swanseabrian 时间: 2021-9-20 10:47
回复 3# Batcher
名字是从别的地方导的,准备导到excel里,拼一个ren 命令出来,再重命名
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |