怎么使用批处理或命令行在每个文件夹名称后面加上文件夹内对应的文件数?
怎么使用批处理在每个文件夹名称后面加上文件夹内对应的文件数?例如:A文件夹下有B文件夹,B文件夹内有100个各种格式的图片文件;通过批处理或要实现的是B文件夹名字后面加上...
怎么使用批处理在每个文件夹名称后面加上文件夹内对应的文件数?
例如:A文件夹下有B文件夹,B文件夹内有100个各种格式的图片文件;通过批处理或要实现的是B文件夹名字后面加上[100P]即=B[100P];A文件夹下有数百个类似B文件夹的图片文件夹;求批处理。 展开
例如:A文件夹下有B文件夹,B文件夹内有100个各种格式的图片文件;通过批处理或要实现的是B文件夹名字后面加上[100P]即=B[100P];A文件夹下有数百个类似B文件夹的图片文件夹;求批处理。 展开
2个回答
展开全部
建议楼主学学autoit脚本 实现起来比较简单的、有许多好用的函数可以调用
#include <File.au3>
$father = "D:\A"
$child = _FileListToArray($father, "*", 2)
For $i = 1 To $child[0]
$n = _FileListToArray($father & "\" & $child[$i], "*", 1)
If $n = 0 Then ContinueLoop
If FileExist($father & "\" & $child[$i] & "\" & "Thumbs.db") Then $n[0] -= 1
DirMove($father & "\" & $child[$i], $father & "\" & $child[$i] & "[" & $n[0] & "]")
Next
#include <File.au3>
$father = "D:\A"
$child = _FileListToArray($father, "*", 2)
For $i = 1 To $child[0]
$n = _FileListToArray($father & "\" & $child[$i], "*", 1)
If $n = 0 Then ContinueLoop
If FileExist($father & "\" & $child[$i] & "\" & "Thumbs.db") Then $n[0] -= 1
DirMove($father & "\" & $child[$i], $father & "\" & $child[$i] & "[" & $n[0] & "]")
Next
追问
不会使用autoit脚本
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@echo off
setlocal enabledelayedexpansion
pushd A文件夹
for /f "tokens=*" %%i in ('dir/ad/b') do (
for /f "tokens=*' %%j in ('dir/b "%%i"^|find /c /v ""') do set n=%%j
move "%%i" "%%i[!n!P]")
setlocal enabledelayedexpansion
pushd A文件夹
for /f "tokens=*" %%i in ('dir/ad/b') do (
for /f "tokens=*' %%j in ('dir/b "%%i"^|find /c /v ""') do set n=%%j
move "%%i" "%%i[!n!P]")
追问
怎么使用,你看懂我的意思没有?
A文件夹下有数百个类似B文件夹的图片文件夹;求批处理。
试过你的不管用
追答
pushd A文件夹
A文件夹改成你的文件夹路径,或者把批处理放在你的A文件夹里,把这句删除
还有倒数第二句for /f "tokens=*' 最后的单引号改成半角双引号
for /f "tokens=*"
@echo off
setlocal enabledelayedexpansion
for /f "tokens=*" %%i in ('dir/ad/b') do (
for /f "tokens=*" %%j in ('dir/b "%%i"^|find /c /v ""') do set n=%%j
move "%%i" "%%i[!n!P]")
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询