- 帖子
- 131
- 积分
- 168
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2019-8-25
|
18楼
发表于 2021-5-21 10:48
| 只看该作者
回复 17# went
我不懂怎么快速。。。但是我有类似bat
这个bat是列出当前文件夹所有文件夹里面有多少文件并且写在文件夹前面。。。速度极度快。。。
@Powershell -v 3 -nolog "& {[ScriptBlock]::Create("'#' + ([io.file]::ReadAllText('%~f0',[text.encoding]:efault))").Invoke()}" & pause & exit
$dirItems = Get-ChildItem -Path './' -Directory;
foreach($item in $dirItems)
{
$files = $item.GetFiles();
$newName = "{0:d7}" -f ($files.Count);
$newName += $item.Name;
Rename-Item -Path $item -NewName $newName;
}
目前求得这个bat我很少很少使用。。所以没事。。。也很少有可能需要遇到几千几万个这样做的文件夹
不管怎样,起码你的这个bat已经很好了,感谢 |
|