移动未知命名图像的副本并重命名 - Powershell 或批处理脚本

移动未知命名图像的副本并重命名 - Powershell 或批处理脚本
  1. 将文件夹中的前十个 jpg 文件按字母顺序复制到新文件夹中,而无需事先知道 jpg 文件名。
  2. 为新位置中的每十个文件赋予特定的名称,例如“e100.jpg”-“e110.jpg”。
  3. Powershell 或批处理脚本解决方案在 Windows 环境中运行。

相关 Stack Exchange 帖子的当前研究:

  1. SO-使用 powershell 将前 N 个文件从源目录复制到“序列化”目标目录

  2. SF - 从文件夹及其子文件夹复制前 10 个文件

  3. SO-Powershell 从文件夹中选择随机文件并将其移动到另一个文件夹

  4. SU - 如何批量复制重命名文件

  5. SU - 如何在 Windows 中选择性地复制和重命名文件?

  6. SU - PowerShell 脚本重命名 - 复制 - 移动

  7. 使用连续数字后缀在 PowerShell 中批量重命名文件

如果我要猜测一个解决方案,由于我的编码技能不是很好,基于研究,我认为其中一个解决方案将是这样的:

电源外壳

$excludealreadycopieditems = @()
$sourcefolder = "C:\SYS1"
$destinationFolder = "C:\SYS2"
$maxitems = 10
#Calculate how many folders should be created:
$folderstocreate = [math]::Ceiling((get-childitem $sourcefolder\*.jpg).count / $maxitems)
#Copy the items (if moving in stead of copy use Move-Item)
get-childitem $sourcefolder\*.jpg -Exclude $excludealreadycopieditems | sort-object name | select -First $maxitems | Copy-Item -Destination $destinationFolder$i ;
#Exclude the already copied items:
$excludealreadycopieditems = $excludealreadycopieditems + (get-childitem $destinationFolder$i\*.jpg | select -ExpandProperty name)
     }
ls *jpg | Foreach {$i=1} {Rename-Item _ -NewName ("$($.100){$:110#} .jpg" -f $i++) -whatif}

命令

@ECHO OFF
SET SrcCount=0
SET SrcMax=10
FOR %F IN (C:\SYS1\*.jpg) DO IF !SrcCount! LSS %SrcMax% (
      SET /A SrcCount += 1
      ECHO !SrcCount! COPY %F C:\SYS2
      COPY %F C:\temp\output
      )
ren *.jpg e100.* e103.* e104.* e105.* e106.* e107.* e108.* e109.* e110.*

答案1

如何将 10 个文件复制到新目录并使用某种模式重命名它们?

使用以下批处理文件(test.cmd):

@echo off
setlocal EnableDelayedExpansion
set "source_dir=f:\test\jpg"
set "target_dir=f:\test\target"
for /f "tokens=*" %%f in ('dir /b %source_dir%\*.jpg') do (
  set /a "count+=1"
  set /a "target_count=!count!+100"
  copy "%source_dir%\%%f" "!target_dir!\e!target_count!.jpg" > nul
  if !count! EQU 10 goto :done
  )
rem finished
:done
endlocal

笔记:

  • 改变source_dirtarget_dir视情况而定

例子:

> dir jpg
 Volume in drive F is Expansion
 Volume Serial Number is 3656-BB63

 Directory of F:\test\jpg

12/03/2019  11:39    <DIR>          .
12/03/2019  11:39    <DIR>          ..
12/03/2019  11:34             4,429 Test_image (01).jpg
12/03/2019  11:34             4,429 Test_image (02).jpg
12/03/2019  11:34             4,429 Test_image (03).jpg
12/03/2019  11:34             4,429 Test_image (04).jpg
12/03/2019  11:34             4,429 Test_image (05).jpg
12/03/2019  11:34             4,429 Test_image (06).jpg
12/03/2019  11:34             4,429 Test_image (07).jpg
12/03/2019  11:34             4,429 Test_image (08).jpg
12/03/2019  11:34             4,429 Test_image (09).jpg
12/03/2019  11:34             4,429 Test_image (10).jpg
12/03/2019  11:34             4,429 Test_image (11).jpg
12/03/2019  11:34             4,429 Test_image (12).jpg
12/03/2019  11:34             4,429 Test_image (13).jpg
12/03/2019  11:34             4,429 Test_image (14).jpg
12/03/2019  11:34             4,429 Test_image (15).jpg
12/03/2019  11:34             4,429 Test_image (16).jpg
              16 File(s)         70,864 bytes
               2 Dir(s)  1,005,493,501,952 bytes free

> test
> dir target
 Volume in drive F is Expansion
 Volume Serial Number is 3656-BB63

 Directory of F:\test\target

12/03/2019  12:07    <DIR>          .
12/03/2019  12:07    <DIR>          ..
12/03/2019  11:34             4,429 e101.jpg
12/03/2019  11:34             4,429 e102.jpg
12/03/2019  11:34             4,429 e103.jpg
12/03/2019  11:34             4,429 e104.jpg
12/03/2019  11:34             4,429 e105.jpg
12/03/2019  11:34             4,429 e106.jpg
12/03/2019  11:34             4,429 e107.jpg
12/03/2019  11:34             4,429 e108.jpg
12/03/2019  11:34             4,429 e109.jpg
12/03/2019  11:34             4,429 e110.jpg
              10 File(s)         44,290 bytes
               2 Dir(s)  1,005,493,379,072 bytes free

进一步阅读

答案2

所以你确实进行了大量的研究,但如果不评估你的结果,那么它就没有多大价值。

在 NTFS 格式的驱动器中,隐含着字母数字排序。

电源外壳:

Get-ChildItem -Path C:\Sys1 -Filter *.jpg -File |
  Sort-Object Name | Select-Object -First 10 |
    ForEach-Object -Begin {$i=100} -Process {
      Copy-Item -Path $_ -Destination (Join-Path "C:\Sys2" ("e{0:D3}{1}" -f $i++,$_.Extension)) -WhatIf
    }

如果输出看起来没问题,删除-WhatIf

相关内容