質問があります。 私はfilename、ソースと宛先のディレクトリでフォーマットテーブルを作成しました。 今、私はforeachでテーブルをループしようとします。 このループの中で、私はソースから宛先ディレクトリにファイルを移動したいと思います。私の問題は、行からアイテムを取得することです。Powershell Loop through Format-Table
がcls
$MovePathSource = "C:\Users\user\Desktop\sourcefolder"
$MovePathDestination = "C:\Users\user\Desktop\destinationfolder"
$filetypes = @("*.llla" , "html")
$table = dir $MovePathSource -Recurse -Include $filetypes | [email protected]{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
}
ありがとうございます!これは動作します! –