如何将 GUID 附加到现有文件名并保存为 CSV
How to append GUID to existing filenames and save to CSV
我目前有一个 CSV,其中包含 1 列,其中列出了许多文件全名。 (即“\\server\sub\folder\file.ext”)。
我正在尝试导入此 CSV,将文件移动到单独的位置并将 GUID 附加到新位置文件名的开头(即 GUID_File.ext)。我已经能够移动文件,生成 GUID_,但无法存储和重用现有的 filename.ext,它只是被切断,文件最终只是一个 GUID_。我只是不确定如何存储现有文件名以供重复使用。
$Doc = Import-CSV C:\Temp\scripttest.csv
ForEach ($line in $Doc)
{
$FileBase = $Line.basename
$FileExt = $Line.extension
Copy-Item -path $line.File -Destination "\Server\Folder$((new-guid).guid.replace('-',''))_$($Filebase)$($FileExt)"
}
如果可能,我还需要将所有新 GUID_File.ext 存储并放回 CSV 文件中,并将任何错误存储到另一个文件中。
I currently have a CSV which contains 1 column that lists many file FullNames. (ie. "\server\sub\folder\file.ext").
这不是 CSV。它只是一个带有列表的纯文本文件。
但是,您可以通过以下方式实现目标:
foreach ($path in (Get-Content -Path C:\Temp\scripttest.csv))
{
$file = [System.IO.FileInfo]$path
$prefix = (New-Guid).Guid -replace '-'
Copy-Item -Path $file.FullName -Destination "\Server\Folder${prefix}_$file"
}
这将获取您的列表,将项目转换为可以使用的 FileInfo
类型,然后执行其余的逻辑。
基于:
$FileBase = $line.basename
$FileExt = $line.extension
听起来您错误地认为代表从 Import-Csv C:\Temp\scripttest.csv
返回的 objects 的 $line
个实例是 [System.IO.FileInfo]
个实例,但它们不是:
Import-Csv
输出是 [pscustomobject]
个实例,其 properties 反映了输入 CSV 的列值,这些值属性总是 strings.
因此您必须使用 $line.<column1Name>
来引用包含完整文件名的列,其中 <column1Name>
是为 header 行中感兴趣的列定义的名称(第 1输入 CSV 文件的行)。
如果 CSV 文件没有 header 行,您可以通过将列名数组传递给 Import-Csv
的 -Header
参数来指定列名,例如,
Import-Csv -Header Path, OtherCol1, OtherCol2, ... C:\Temp\scripttest.csv
我假设感兴趣的列在以下解决方案中被命名为 Path
:
$Doc = Import-Csv C:\Temp\scripttest.csv
ForEach ($rowObject in $Doc)
{
$fileName = Split-Path -Leaf $rowObject.Path
Copy-Item -Path $rowObject.Path `
-Destination "\Server\Folder$((new-guid).guid.replace('-',''))_$fileName"
}
请注意如何使用 Split-Path -Leaf
从完整输入路径中提取文件名,包括扩展名。
如果我仔细阅读你的问题,你想:
- 复制 'File' 列中 CSV 文件中列出的文件。
- 新文件的文件名前应该有一个 GUID
- 您需要一个新的 CSV 文件,其中存储了新的文件名供以后参考
- 您想跟踪任何错误并将其写入(日志)文件
假设您有一个如下所示的输入 CSV 文件:
File,Author,MoreStuff
\server\sub\folder\file.ext,Someone,Blah
\server\sub\folder\file2.ext,Someone Else,Blah2
\server\sub\folder\file3.ext,Same Someone,Blah3
然后下面的脚本希望能满足您的需求。
它通过在文件名前添加 GUID 来创建新文件名,并将 File
列中列出的 CSV 文件复制到某个目标路径。
它在目标文件夹中输出一个新的 CSV 文件,如下所示:
OriginalFile,NewFile
\server\sub\folder\file.ext,\anotherserver\sub\folderf7bec9e4c0443081b385277a9d253d_file.ext
\server\sub\folder\file2.ext,\anotherserver\sub\folder\d19546f7a3284ccb995e5ea27db2c034_file2.ext
\server\sub\folder\file3.ext,\anotherserver\sub\folder\edd6d35006ac46e294aaa25526ec5033_file3.ext
所有错误都列在日志文件中(也在目标文件夹中)。
$Destination = '\Server\Folder'
$ResultsFile = Join-Path $Destination 'Copy_Results.csv'
$Logfile = Join-Path $Destination 'Copy_Errors.log'
$Doc = Import-CSV C:\Temp\scripttest.csv
# create an array to store the copy results in
$result = @()
# loop through the csv data using only the column called 'File'
ForEach ($fileName in $Doc.File) {
# check if the given file exists; if not then write to the errors log file
if (Test-Path -Path $fileName -PathType Leaf) {
$oldBaseName = Split-Path -Path $fileName.Path -Leaf
# or do $oldBaseName = [System.IO.Path]::GetFileName($fileName)
$newBaseName = "{0}_{1}" -f $((New-Guid).toString("N")), $oldBaseName
# (New-Guid).toString("N") returns the Guid without hyphens, same as (New-Guid).Guid.Replace('-','')
$destinationFile = Join-Path $Destination $newBaseName
try {
Copy-Item -Path $fileName -Destination $destinationFile -Force -ErrorAction Stop
# add an object to the results array to store the original filename and the full filename of the copy
$result += New-Object -TypeName PSObject -Property @{
'OriginalFile' = $fileName
'NewFile' = $destinationFile
}
}
catch {
Write-Error "Could not copy file to '$destinationFile'"
# write the error to the log file
Add-content $Logfile -Value "$((Get-Date).ToString("yyyy-MM-dd HH:mm:ss")) - ERROR: Could not copy file to '$destinationFile'"
}
}
else {
Write-Warning "File '$fileName' does not exist"
# write the error to the log file
Add-content $Logfile -Value "$((Get-Date).ToString("yyyy-MM-dd HH:mm:ss")) - WARNING: File '$fileName' does not exist"
}
}
# finally create a CSV with the results of this copy.
# the CSV will have two headers 'OriginalFile' and 'NewFile'
$result | Export-Csv -Path $ResultsFile -NoTypeInformation -Force
感谢大家提供的解决方案。他们所有人都工作并且工作得很好。我选择 Theo 作为答案是因为他的解决方案解决了错误记录并存储了所有新重命名的文件 GUID_File.ext new to the existing CSV info。
谢谢大家。
我目前有一个 CSV,其中包含 1 列,其中列出了许多文件全名。 (即“\\server\sub\folder\file.ext”)。
我正在尝试导入此 CSV,将文件移动到单独的位置并将 GUID 附加到新位置文件名的开头(即 GUID_File.ext)。我已经能够移动文件,生成 GUID_,但无法存储和重用现有的 filename.ext,它只是被切断,文件最终只是一个 GUID_。我只是不确定如何存储现有文件名以供重复使用。
$Doc = Import-CSV C:\Temp\scripttest.csv
ForEach ($line in $Doc)
{
$FileBase = $Line.basename
$FileExt = $Line.extension
Copy-Item -path $line.File -Destination "\Server\Folder$((new-guid).guid.replace('-',''))_$($Filebase)$($FileExt)"
}
如果可能,我还需要将所有新 GUID_File.ext 存储并放回 CSV 文件中,并将任何错误存储到另一个文件中。
I currently have a CSV which contains 1 column that lists many file FullNames. (ie. "\server\sub\folder\file.ext").
这不是 CSV。它只是一个带有列表的纯文本文件。
但是,您可以通过以下方式实现目标:
foreach ($path in (Get-Content -Path C:\Temp\scripttest.csv))
{
$file = [System.IO.FileInfo]$path
$prefix = (New-Guid).Guid -replace '-'
Copy-Item -Path $file.FullName -Destination "\Server\Folder${prefix}_$file"
}
这将获取您的列表,将项目转换为可以使用的 FileInfo
类型,然后执行其余的逻辑。
基于:
$FileBase = $line.basename
$FileExt = $line.extension
听起来您错误地认为代表从 Import-Csv C:\Temp\scripttest.csv
返回的 objects 的 $line
个实例是 [System.IO.FileInfo]
个实例,但它们不是:
Import-Csv
输出是 [pscustomobject]
个实例,其 properties 反映了输入 CSV 的列值,这些值属性总是 strings.
因此您必须使用 $line.<column1Name>
来引用包含完整文件名的列,其中 <column1Name>
是为 header 行中感兴趣的列定义的名称(第 1输入 CSV 文件的行)。
如果 CSV 文件没有 header 行,您可以通过将列名数组传递给 Import-Csv
的 -Header
参数来指定列名,例如,
Import-Csv -Header Path, OtherCol1, OtherCol2, ... C:\Temp\scripttest.csv
我假设感兴趣的列在以下解决方案中被命名为 Path
:
$Doc = Import-Csv C:\Temp\scripttest.csv
ForEach ($rowObject in $Doc)
{
$fileName = Split-Path -Leaf $rowObject.Path
Copy-Item -Path $rowObject.Path `
-Destination "\Server\Folder$((new-guid).guid.replace('-',''))_$fileName"
}
请注意如何使用 Split-Path -Leaf
从完整输入路径中提取文件名,包括扩展名。
如果我仔细阅读你的问题,你想:
- 复制 'File' 列中 CSV 文件中列出的文件。
- 新文件的文件名前应该有一个 GUID
- 您需要一个新的 CSV 文件,其中存储了新的文件名供以后参考
- 您想跟踪任何错误并将其写入(日志)文件
假设您有一个如下所示的输入 CSV 文件:
File,Author,MoreStuff
\server\sub\folder\file.ext,Someone,Blah
\server\sub\folder\file2.ext,Someone Else,Blah2
\server\sub\folder\file3.ext,Same Someone,Blah3
然后下面的脚本希望能满足您的需求。
它通过在文件名前添加 GUID 来创建新文件名,并将 File
列中列出的 CSV 文件复制到某个目标路径。
它在目标文件夹中输出一个新的 CSV 文件,如下所示:
OriginalFile,NewFile
\server\sub\folder\file.ext,\anotherserver\sub\folderf7bec9e4c0443081b385277a9d253d_file.ext
\server\sub\folder\file2.ext,\anotherserver\sub\folder\d19546f7a3284ccb995e5ea27db2c034_file2.ext
\server\sub\folder\file3.ext,\anotherserver\sub\folder\edd6d35006ac46e294aaa25526ec5033_file3.ext
所有错误都列在日志文件中(也在目标文件夹中)。
$Destination = '\Server\Folder'
$ResultsFile = Join-Path $Destination 'Copy_Results.csv'
$Logfile = Join-Path $Destination 'Copy_Errors.log'
$Doc = Import-CSV C:\Temp\scripttest.csv
# create an array to store the copy results in
$result = @()
# loop through the csv data using only the column called 'File'
ForEach ($fileName in $Doc.File) {
# check if the given file exists; if not then write to the errors log file
if (Test-Path -Path $fileName -PathType Leaf) {
$oldBaseName = Split-Path -Path $fileName.Path -Leaf
# or do $oldBaseName = [System.IO.Path]::GetFileName($fileName)
$newBaseName = "{0}_{1}" -f $((New-Guid).toString("N")), $oldBaseName
# (New-Guid).toString("N") returns the Guid without hyphens, same as (New-Guid).Guid.Replace('-','')
$destinationFile = Join-Path $Destination $newBaseName
try {
Copy-Item -Path $fileName -Destination $destinationFile -Force -ErrorAction Stop
# add an object to the results array to store the original filename and the full filename of the copy
$result += New-Object -TypeName PSObject -Property @{
'OriginalFile' = $fileName
'NewFile' = $destinationFile
}
}
catch {
Write-Error "Could not copy file to '$destinationFile'"
# write the error to the log file
Add-content $Logfile -Value "$((Get-Date).ToString("yyyy-MM-dd HH:mm:ss")) - ERROR: Could not copy file to '$destinationFile'"
}
}
else {
Write-Warning "File '$fileName' does not exist"
# write the error to the log file
Add-content $Logfile -Value "$((Get-Date).ToString("yyyy-MM-dd HH:mm:ss")) - WARNING: File '$fileName' does not exist"
}
}
# finally create a CSV with the results of this copy.
# the CSV will have two headers 'OriginalFile' and 'NewFile'
$result | Export-Csv -Path $ResultsFile -NoTypeInformation -Force
感谢大家提供的解决方案。他们所有人都工作并且工作得很好。我选择 Theo 作为答案是因为他的解决方案解决了错误记录并存储了所有新重命名的文件 GUID_File.ext new to the existing CSV info。
谢谢大家。