rem 将一个文件夹里的所有文件移动到另一个文件夹里
set #=Any questions&set _=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%_% %z%
set "oldfolder=D:\xxx\原文件毕芦夹"
set "newfolder=D:\yyy\新文件夹"
if not exist "%oldfolder%" (echo"%oldfolder%" path error or not exist&pause&exit)
if "%oldfolder:~-1%" equ "\" set "oldfolder=%oldfolder:~,-1%"
if "%newfolder:~-1%" equ "\" set "newfolder=%newfolder:~,-1%"
robocopy "%oldfolder%" "%newfolder%" /move /e
echo%#% +%$%%$%/%_% %z%
pause
exit
move "这里写你要移动的文件路径,不要删除这个双引号" E:\图片配旅行保存”
start E:\图片保存培哗”
这镇庆是我本地随便写的一个
保存为.bat就可以了
不清楚你的实际文件/情况,仅以问题中的说明及庆悉猜测为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件和文件夹放一起双击运行<# :cls&echo off&cd /d "%~dp0"&mode con lines=5000
rem 将当前目录里的多个mp4文件按照指定数量平分到多个不同文件夹里
set #=Any question&set _=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%_% %z%
set "current=%cd%"
echo%#% +%$%%$%/%_% %z%
powershell -NoProfile -ExecutionPolicy bypass "Get-Content -literal '%~f0'|Out-String|Invoke-Expression"
pause
exit
#>
$count=4
$folder=@"
文件夹1
文件夹2
文件夹3
文件夹4
文件夹N
"@
$codes=@'
using System
using System.Collections.Generic
using System.Runtime.InteropServices
public static class ExpDir
{
[DllImport("Shlwapi.dll", CharSet=CharSet.Unicode)]
public static extern int StrCmpLogicalW(string p1, string p2)
public static string[] Sort(string[] f)
{
Array.Sort(f, StrCmpLogicalW)
塌差纯 return f
团咐 }
}
'@
Add-Type -TypeDefinition $codes
$b=[Convert]::FromBase64String("IC0tPiA=")
$c=[Text.Encoding]::Default.GetString($b)
$arr=$folder.trim() -split '[\r\n]+'
$current=$env:current
$files=@(dir -literal $current|?{(@('.mp4') -contains $_.Extension) -and ($_ -is [System.IO.FileInfo])})
if($files.length -ge 1){
$n=0
$brr=[ExpDir]::Sort($files)
for($i=0$i -lt $brr.count$i++){
if($n -lt $arr.length){
$fd=$arr[$n].trim()
$newfolder=$current+'\'+$fd
$oldfile=$current+'\'+$brr[$i]
$newfile=$newfolder+'\'+$brr[$i]
write-host ($brr[$i]+$c+$fd)
}
if((($i+1) % $count) -eq 0){$n++}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)