2

我有个问题。我创建了一个带有文件名、源目录和目标目录的格式表。现在我尝试用 foreach 遍历表。在这个循环中,我想将文件从源目录移动到目标目录。我的问题是从行中获取项目。

这是我的示例代码:

cls
$MovePathSource = "C:\Users\user\Desktop\sourcefolder"
$MovePathDestination = "C:\Users\user\Desktop\destinationfolder"

$filetypes = @("*.llla" , "html")
$table = dir $MovePathSource -Recurse -Include $filetypes | Format-Table@{Expression={$_.Name};Label="Filename"},@{Expression={($_.DirectoryName)};Label="Sourcepath"},@{Expression={($_.DirectoryName).Replace($MovePathSource,$MovePathDestination)};Label="Destinationpath"}

$table

foreach ($row in $table)
{
write-host "$row.Sourcepath"
#Move-Item -Path ($row.Sourcepath + "\" + $row.Filename) -Destination $row.Destinationpath
}
4

2 回答 2

7

在处理完数据之前,切勿使用Format-*-cmdlet。即使这样,也只能在向用户显示某些内容(或创建邮件等)时使用它,因为它们会破坏原始数据并且只给您留下特殊的格式对象。

替换为Format-TableSelect-Object保留可用对象的同时获得相同的结果。

$table = dir $MovePathSource -Recurse -Include $filetypes |
Select-Object @{Expression={$_.Name};Label="Filename"},@{Expression={($_.DirectoryName)};Label="Sourcepath"},@{Expression={($_.DirectoryName).Replace($MovePathSource,$MovePathDestination)};Label="Destinationpath"}
于 2016-05-03T08:54:11.147 回答
2

format-tablecmdlet 用于将命令的输出格式化为表格。如果要使用对象,请改用 a select

$table = dir $MovePathSource -Recurse -Include $filetypes | select @{Expression={$_.Name};Label="Filename"},@{Expression={($_.DirectoryName)};Label="Sourcepath"},@{Expression={($_.DirectoryName).Replace($MovePathSource,$MovePathDestination)};Label="Destinationpath"}

现在您可以访问您在评论中尝试过的属性。如果要打印表格,则可以使用$table | format-table

于 2016-05-03T08:54:24.733 回答