boy1900 当前离线
列兵
TOP
idwma 当前离线
少校
#@&cls&powershell "type '%~0'|out-string|iex"&pause&exit $a=New-Object -ComObject Shell.Application dir *.mp3|%{ $b=$a.namespace($_.directoryname) $c=$b.getdetailsof($b.parsename($_.name),27) $d=([TimeSpan]$c).TotalSeconds if(!(test-path $d)){md $d} move $_.name $d }复制代码
评分人数
#@&cls&powershell "type '%~0'|out-string|iex"&pause&exit $a=New-Object -ComObject Shell.Application dir *.mp3|%{ $b=$a.namespace($_.directoryname) $c=$b.getdetailsof($b.parsename($_.name),27) $d=([TimeSpan]$c).TotalSeconds md $d move $_.name $d }复制代码
taofan712 当前离线
六级士官
@echo off setlocal enabledelayedexpansion for /f "tokens=2 delims=:." %%a in ('dir /b *.mp3') do ( set /a name=%%a+0 if not exist !name! md !name! move %%a !name! ) pause复制代码