导入 .csv 以创建文件名和相应所有者的列表

Import .csv to create a list of filenames and corresponding owners

我正在创建一个脚本,该脚本将读取包含单列文件名(每个单元格一个)的 .csv 文档,并在更大的文件夹中搜索与提供的文件名匹配的每个文件并确定 'owner' 使用:

(get-acl $file).owner

目前我有几段代码可以完成单独的部分,但我很难将它们组合在一起。理想情况下,用户可以简单地将文件名输入 .csv 文件,然后 运行 脚本输出第二个 .csv 或 .txt 标识每个文件名及其所有者。

csv 格式将如下所示(ASIN 为 header):

ASINs
B01M8N1D83.MAIN.PC_410
B01M14G0JV.MAIN.PC_410

不带 header 的文件名:

$images = Get-Content \path\ASINs.csv | Select -skip 1

在较大的文件夹中查找图像以提取完整 filename/path(不工作):

ForEach($image in $images) {

    $images.FullName | ForEach-Object

       {
       $ASIN | Get-ChildItem -Path $serverPath -Filter *.jpg -Recurse -ErrorAction SilentlyContinue -Force | Set-Content \path\FullNames.csv
       }
}

那时我想使用 FullNames.csv 提供的完整文件路径使用上述方法将所有者从其原始位置的文件中拉出来:

(get-acl $file).owner

有没有人知道如何将这些结合到一个流畅的脚本中?

编辑 我能够在没有循环的情况下使以下内容工作,读取其中一个文件名,但我需要它循环,因为有多个文件名。

新 CSV 格式:

    BaseName
    B01LVVLSCM.MAIN.PC_410
    B01LVY65AN.MAIN.PC_410
    B01MAXORH6.MAIN.PC_410
    B01MTGEMEE.MAIN.PC_410

新脚本:

$desktopPath = [System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::Desktop)
$images = $desktopPath + '\Get_Owner'
Get-ChildItem -Path $images | Select BaseName | Export-Csv $desktopPath`\Filenames.csv -NoTypeInformation
$serverPath = 'C:\Users\tuggleg\Desktop\Archive'
$files = Import-Csv -Path $desktopPath`\Filenames.csv
While($true) {
ForEach ($fileName in $files.BaseName)
{
Get-ChildItem -Path $serverPath -Filter "*$fileName*" -Recurse -ErrorAction 'SilentlyContinue' |
        Select-Object -Property @{
            Name='Owner'
            Expression={(Get-Acl -Path $_.FullName).Owner}
          },'*' |
        Export-Csv -Path $desktopPath`\Owners.csv -NoTypeInformation
}
}

关于循环问题有什么想法吗?谢谢大家!

此示例假定您的 csv 包含部分文件名。它将搜索文件路径并过滤那些部分。

Example.csv

"ASINs"
"B01M8N1D83.MAIN.PC_410"
"B01M14G0JV.MAIN.PC_410"

代码.ps1

$Files = Import-Csv -Path '.\Example.csv'

ForEach ($FileName in $Files.ASINs)
{
    Get-ChildItem -Path $serverPath -Filter "*$FileName*" -Recurse -ErrorAction 'SilentlyContinue' |
        Select-Object -Property @{
            Name='Owner'
            Expression={(Get-Acl -Path $_.FullName).Owner}
          },'*' |
        Export-Csv -Path '\path\FullNames.csv' -NoTypeInformation
}