标题: [文件操作] 批处理怎样把除第一个子文件夹以外的其他子文件夹内的文件剪切到第一个子文件夹? [打印本页]
作者: 无我居士 时间: 2023-4-7 10:23 标题: 批处理怎样把除第一个子文件夹以外的其他子文件夹内的文件剪切到第一个子文件夹?
以下是某大神帮我写的代码,
需要实现将:将当前目录里除了第一个子文件夹以外的其他子文件夹内的文件剪切后粘贴到第一个子文件夹里,然后删除第一个子文件夹以外的所有子文件夹
但是没有完全实现,请帮忙看看需要如何修改完善?!谢谢!!!- <# :
- cls&echo off&mode con lines=5000
- rem 将当前目录里除了第一个子文件夹以外的其他子文件夹内的文件剪切后粘贴到第一个子文件夹里,然后删除第一个子文件夹以外的所有子文件夹
- set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
- title %#% +%$%%$%/%@% %z%
- cd /d "%~dp0"
- powershell -NoProfile -ExecutionPolicy bypass "Invoke-Command -ScriptBlock ([ScriptBlock]::Create([IO.File]::ReadAllText('%~f0',[Text.Encoding]::GetEncoding('GB2312')))) -Args '%~f0'"
- echo;%#% +%$%%$%/%@% %z%
- pause
- exit
- #>
- $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;
- [byte[]]$b=@(32,45,45,62,32);
- $c=[Text.Encoding]::Default.GetString($b);
- $self=get-item -liter $args[0];
- $path=$self.Directory.FullName;
- $folders=@(dir -liter $path|?{$_ -is [System.IO.DirectoryInfo]}|%{$_.Name});
- if($folders.length -ge 2){
- $arr=[ExpDir]::Sort($folders);
- for($i=1;$i -lt $arr.count;$i++){
- $folder=$path+'\'+$arr[$i];
- $files=@(dir -liter $folder -recurse|?{$_ -is [System.IO.FileInfo]});
- for($j=0;$j -lt $files.length;$j++){
- $newpath=$path+'\'+$arr[0]+$files[$j].Directory.FullName.substring($folder.length);
- if(-not (test-path -liter $newpath)){[void][IO.Directory]::CreateDirectory($newpath)};
- $newname=$files[$j].Name;
- $newfile=$newpath.trimend('\')+'\'+$newname;
- $n=2;
- while(test-path -liter $newfile){
- $newname=$files[$j].BaseName+' ('+$n.toString()+')'+$files[$j].Extension;
- $newfile=$newpath.trimend('\')+'\'+$newname;
- $n++;
- }
- $files[$j].FullName.substring($path.length)+$c+$newfile.substring($path.length);
- }
- }
- }
复制代码
作者: xp3000 时间: 2023-4-7 12:04
- @echo off
- setlocal enabledelayedexpansion
- REM.保存ANSI编码的BAT文件
- set n=0
- @for /f "delims=" %%a in ('dir /a:d /b') do (
- set /a n+=1
- if !n! gtr 1 (
- move "%~dp0%%a\*" "%~dp0!s!\"
- rd /s /q "%~dp0%%a"
- ) else (
- set "s=%%a"
- )
- )
- pause&exit /b
复制代码
作者: qixiaobin0715 时间: 2023-4-7 12:22
- @echo off
- setlocal enabledelayedexpansion
- for /f "delims=" %%i in ('dir /b /ad') do (
- if not defined Folder (
- set Folder=%%i
- ) else (
- move "%%i\*.*" "!Folder!\"
- rd "%%i"
- )
- )
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |