我有一大堆的CSV文件,我想用PowerShell来重命名。
从
abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-17-Oct-2018_23-49-38-6d73395f476ad09a7506dc00533933b8.csv
abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-15-Oct-2018_05-20-36-75eabae7c4123198ff5fe6f4f642449f.csv
abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-12-Oct-2018_06-23-58-b13eb8f362c09fbe405458fac8af8f8e.csv
至
abc-17-Oct-2018.csv
abc-15-Oct-2018.csv
abc-12-Oct-2018.csv
下划线(_)使用此命令后,我可以删除角色
Get-ChildItem -Filter *.csv | Foreach-Object -Process {
$NewName = [Regex]::Match($_.Name,"^[^_]*").Value + '.csv'
$_ | Rename-Item -NewName $NewName}
这使我这个文件名
abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-17-Oct-2018.csv
但我从第一个连字符到第三从去年连字符删除字符的范围看不到。
我试过,但得到一个错误。
Get-ChildItem -Filter *.csv | Rename-Item -NewName {
-replace '^[^-]..^[^-]{-3}','^[^-]'}
可能有人好心开导我如何擦除范围是多少? (和可能结合起来,前者的命令)
假设所有输入的文件名具有相同数目的在同一位置上的同样隔板的令牌:
Get-ChildItem -Filter *.csv | Rename-Item -NewName {
(($_.Name -split '[-_]')[0, 10, 11, 12] -join '-') + '.csv'
} -WhatIf
-WhatIf
预览重命名操作; 删除它来执行实际的重命名。
分割的文件名进入由隔板令牌避免复杂的正则表达式; PowerShell的柔性阵列切片可以很容易地从由关注其索引访问令牌拼凑目标文件名。
也就是说,如果你想做到这一点的-replace
和复杂的正则表达式:
Get-ChildItem -Filter *.csv | Rename-Item -NewName {
$_.Name -replace '^([^-]+).*?-(\d[^_]+).*', '$1-$2.csv'
} -Whatif
前的一个-该解决方案不承担第二令牌的固定位置,以提取_
-和代替识别其开始由-
后跟数字( \d
)。
所以,我发现了一个很长的和令人费解的方式做到这一点,但它的作品所以它的工作原理。
# Adds files into an object
$CSV = Get-ChildItem "C:\temp\test\*.csv"
# Create a loop to action each file in the object created above
Foreach($File in $CSV){
# Splits each part of the filename using the hyphen
$NewName = @($File.basename.Split('-'))
# created a new name using each individual part of the split original name
# Also replaced the underscore section
$NewFileName = "$($NewName[0])"+"-"+"$($NewName[10])"+"-"+"$($NewName[11])"+"-"+"$($NewName[12] -replace '_.*')"+".csv"
# Renames file
Rename-Item $File $NewFileName
}
如何提取只有你需要重命名的东西。 这意味着我测试的是什么。 正则表达式陷阱前4,日期和最后4.如何测试这种方法。
Clear-Host
Write-Host "`nCreate the the file set *********" -ForegroundColor Cyan
'abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-17-Oct-2018_23-49-38-6d73395f476ad09a7506dc00533933b8.csv',
'abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-15-Oct-2018_05-20-36-75eabae7c4123198ff5fe6f4f642449f.csv',
'abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-12-Oct-2018_06-23-58-b13eb8f362c09fbe405458fac8af8f8e.csv' |
%{New-Item -Path 'D:\Temp' -Name $_ -ItemType File}
Write-Host "`nValidate the file set creation *********" -ForegroundColor Cyan
(Get-ChildItem -Path 'D:\Temp' -Filter 'abc*').FullName
Write-Host "`nRead the folder for the file set and rename based on regex to shorten the name *********" -ForegroundColor Cyan
Get-ChildItem -Path 'D:\Temp' -Filter 'abc*' |
%{ Rename-Item -Path $_.FullName -NewName ([regex]::Matches($_.Name,'^.{0,4}|\d{2}.*\-\d{4}|.{4}$').Value -join '')}
Write-Host "`nValidate the name change *********" -ForegroundColor Cyan
(Get-ChildItem -Path 'D:\Temp' -Filter 'abc*').FullName
# Results
Create the the file set *********
Directory: D:\Temp
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 10/18/2018 9:29 PM 0 abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-17-Oct-2018_23-49-38-6d73395f476ad09a7506dc00533933b8.csv
-a---- 10/18/2018 9:29 PM 0 abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-15-Oct-2018_05-20-36-75eabae7c4123198ff5fe6f4f642449f.csv
-a---- 10/18/2018 9:29 PM 0 abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-12-Oct-2018_06-23-58-b13eb8f362c09fbe405458fac8af8f8e.csv
Validate the file set creation *********
D:\Temp\abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-12-Oct-2018_06-23-58-b13eb8f362c09fbe405458fac8af8f8e.csv
D:\Temp\abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-15-Oct-2018_05-20-36-75eabae7c4123198ff5fe6f4f642449f.csv
D:\Temp\abc-def-ghi-jkl-mno-pqr-ke-traffic-by-domains-17-Oct-2018_23-49-38-6d73395f476ad09a7506dc00533933b8.csv
Read the folder for the file set and rename based on regex to shorten the name *********
Validate the name change *********
D:\Temp\abc-12-Oct-2018.csv
D:\Temp\abc-15-Oct-2018.csv
D:\Temp\abc-17-Oct-2018.csv
文章来源: Renaming a range from files w/Powershell - from first to third from last hyphen