把一个文件夹里的文件全部移动到另一个文件夹的bat命令?

把一个文件夹里的文件全部移动到另一个文件夹的bat命令?,第1张

不清楚你的实际文件/情况,仅以问题手和带中的样棚中例/说明及猜测为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI@echo off&cd /d "%~dp0"

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

1、首先打开电脑点击鼠标右键选择新建,再选择文本文档,在电脑上新建空旅山一个文本文档。

2、然后需要重命名文件后缀为bat。

3、然后需要按照图示斗中代码输入::被复制的目标文件夹,set tarDir=G:\Guoke\,::文件名set filename=guoke.txt。

4、然后需要按照图示代码判断文件夹是否存在,如果不存在则创建目录。

5、然后需要按照图示代码复制文件,并重定向输出。

6、然后需要按照图示代码输入判断上次命令是否执行成功。

7、双击bat文件执行,如果成镇碧功复制文件夹则输出Copy successfully。

不清楚你的实际文件/情况,仅以问题中的说明及庆悉猜测为据;以下代码复制粘贴到记事本,另存为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++}

    }

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12168622.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存