Windows Powershell - 使用文本文档中的列表重命名文件列表

时间:2013-06-22 23:58:20

标签: powershell rename batch-processing

我尝试使用以下代码使用文本列表"C:\www\folderx"重命名文件"..\list.txt"的文件夹,但我无法弄清楚如何获取当前文件索引:

Get-Childitem C:\www\folderx | % {
    $OldName = $_.name;
    $NewName = (GC ..\list.txt)[<CURRENT INDEX SHOULD GO HERE>];
    # Rename-Item -Newname $NewName;
    Write-Output $("Renamed {0} to {1}" -f $OldName,$NewName);
}

0 个答案:

没有答案