我想将具有DateTime
格式的文件夹复制到名称为Weekday的文件夹中。文件夹D:\ TEST \ 2015-06-23T2300 + 0000应复制到D:\ TEST \ Thursday。
Get-ChildItem $Path | Select FullName
D:\TEST\2015-06-23T2300+0000
D:\TEST\2016-01-07T2300+0000
Get-ChildItem $Path | ForEach {$_.LastWriteTime.DayOfWeek}
Thursday
Friday
这是我现在的代码,但它不起作用。我错过了什么。
$Path = "D:\TEST"
$source = Get-ChildItem $Path | Select FullName
$dest = Get-ChildItem $Path | ForEach {$_.LastWriteTime.DayOfWeek}
foreach ($source in $sources)
{
Copy-Item -Path $source -Destination "D:\TEST2\$dest" -Recurse
}
欢迎任何帮助。
答案 0 :(得分:1)
您正在使用所有可能的工作日值填充$dest
。
按照每个项目检索工作日,当您浏览并复制时:
$Sources = Get-ChildItem $Path
foreach($Source in $Sources)
{
$Weekday = $Source.LastWriteTime.DayOfWeek
$Destination = "D:\Test\$Weekday"
Copy-Item $Source.FullName -Destination $Destination -Recurse
}
答案 1 :(得分:0)
试试这段代码, 这是有效的,我测试过:
$Dir = "c:\files"
$Items = Get-ChildItem -Path $Dir
foreach ($Item in $Items)
{
if (!($Item -is [System.IO.DirectoryInfo]))
{
Copy-Item -Path $Item.FullName -Destination .\Desktop\$($Item.LastAccessTime.DayOfWeek)
}
}