ฉันต้องการลบเฉพาะไฟล์ที่สร้างขึ้นกว่า 15 วันที่ผ่านมาในโฟลเดอร์เฉพาะ ฉันจะทำสิ่งนี้โดยใช้ PowerShell ได้อย่างไร
ฉันต้องการลบเฉพาะไฟล์ที่สร้างขึ้นกว่า 15 วันที่ผ่านมาในโฟลเดอร์เฉพาะ ฉันจะทำสิ่งนี้โดยใช้ PowerShell ได้อย่างไร
คำตอบ:
คำตอบที่ได้รับจะลบไฟล์เท่านั้น (ซึ่งเป็นที่ยอมรับกันว่าเป็นชื่อของโพสต์นี้) แต่นี่คือรหัสบางส่วนที่จะลบไฟล์ทั้งหมดที่เก่ากว่า 15 วันก่อนจากนั้นจึงลบไดเรกทอรีที่ว่างเปล่าซ้ำ ๆ หลัง รหัสของฉันยังใช้-Force
ตัวเลือกในการลบไฟล์ที่ซ่อนและอ่านอย่างเดียวด้วย นอกจากนี้ผมเลือกที่จะไม่ใช้นามแฝงเป็น OP เป็นของใหม่ที่จะ PowerShell และอาจจะไม่เข้าใจสิ่งที่gci
, ?
, %
ฯลฯ
$limit = (Get-Date).AddDays(-15)
$path = "C:\Some\Path"
# Delete files older than the $limit.
Get-ChildItem -Path $path -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt $limit } | Remove-Item -Force
# Delete any empty directories left behind after deleting the old files.
Get-ChildItem -Path $path -Recurse -Force | Where-Object { $_.PSIsContainer -and (Get-ChildItem -Path $_.FullName -Recurse -Force | Where-Object { !$_.PSIsContainer }) -eq $null } | Remove-Item -Force -Recurse
และแน่นอนถ้าคุณต้องการดูว่าไฟล์ / โฟลเดอร์ใดที่จะถูกลบก่อนที่จะทำการลบจริงๆคุณสามารถเพิ่ม-WhatIf
สวิตช์ไปยังการRemove-Item
เรียก cmdlet ที่ท้ายบรรทัดทั้งสอง
รหัสที่แสดงในที่นี้คือ PowerShell v2.0 ที่ใช้งานร่วมกันได้ แต่ฉันยังแสดงรหัสนี้และรหัส PowerShell v3.0 ที่เร็วขึ้นเป็นฟังก์ชั่นที่ใช้ซ้ำได้สะดวกบนบล็อกของฉันฟังก์ชั่นที่มีประโยชน์นำมาใช้ใหม่บนบล็อกของฉัน
เพียงแค่ (PowerShell V5)
Get-ChildItem "C:\temp" -Recurse -File | Where CreationTime -lt (Get-Date).AddDays(-15) | Remove-Item -Force
อีกวิธีหนึ่งคือการลบ 15 วันนับจากวันที่ปัจจุบันและเปรียบเทียบCreationTime
กับค่านั้น:
$root = 'C:\root\folder'
$limit = (Get-Date).AddDays(-15)
Get-ChildItem $root -Recurse | ? {
-not $_.PSIsContainer -and $_.CreationTime -lt $limit
} | Remove-Item
โดยทั่วไปคุณวนซ้ำไฟล์ภายใต้เส้นทางที่กำหนดลบCreationTime
ของแต่ละไฟล์ที่พบจากเวลาปัจจุบันและเปรียบเทียบกับDays
คุณสมบัติของผลลัพธ์ -WhatIf
สวิทช์จะบอกคุณว่าจะเกิดขึ้นจริงโดยไม่ลบไฟล์ (ไฟล์จะถูกลบ) ลบสลับไปจริงลบไฟล์:
$old = 15
$now = Get-Date
Get-ChildItem $path -Recurse |
Where-Object {-not $_.PSIsContainer -and $now.Subtract($_.CreationTime).Days -gt $old } |
Remove-Item -WhatIf
ลองสิ่งนี้:
dir C:\PURGE -recurse |
where { ((get-date)-$_.creationTime).days -gt 15 } |
remove-item -force
-recurse
คือสิ่งที่มากเกินไปใช่ไหม? รายชื่อ dir ซ้ำแล้วซ้ำอีกการลบรายการไม่ควรรวมกับเด็กด้วยใช่ไหม
สคริปต์ของ Esperento57 ไม่ทำงานใน PowerShell เวอร์ชันเก่ากว่า ตัวอย่างนี้:
Get-ChildItem -Path "C:\temp" -Recurse -force -ErrorAction SilentlyContinue | where {($_.LastwriteTime -lt (Get-Date).AddDays(-15) ) -and (! $_.PSIsContainer)} | select name| Remove-Item -Verbose -Force -Recurse -ErrorAction SilentlyContinue
ทางเลือกอื่น (15. ถูกพิมพ์ไปที่ [timespan] โดยอัตโนมัติ):
ls -file | where { (get-date) - $_.creationtime -gt 15. } | Remove-Item -Verbose
$limit = (Get-Date).AddDays(-15)
$path = "C:\Some\Path"
# Delete files older than the $limit.
Get-ChildItem -Path $path -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt $limit } | Remove-Item -Force -Recurse
จะเป็นการลบโฟลเดอร์เก่าและเนื้อหา
หากคุณกำลังมีปัญหากับตัวอย่างข้างต้นใน Windows 10 กล่องลองเปลี่ยนด้วย.CreationTime
.LastwriteTime
สิ่งนี้ใช้ได้สำหรับฉัน
dir C:\locationOfFiles -ErrorAction SilentlyContinue | Where { ((Get-Date)-$_.LastWriteTime).days -gt 15 } | Remove-Item -Force
LastwriteTime
จะไม่เหมือนกันCreationTime
, LastwriteTime
เป็นอัปเดตในแต่ละครั้งไฟล์ที่มีการแก้ไข
#----- Define parameters -----#
#----- Get current date ----#
$Now = Get-Date
$Days = "15" #----- define amount of days ----#
$Targetfolder = "C:\Logs" #----- define folder where files are located ----#
$Extension = "*.log" #----- define extension ----#
$Lastwrite = $Now.AddDays(-$Days)
#----- Get files based on lastwrite filter and specified folder ---#
$Files = Get-Children $Targetfolder -include $Extension -Recurse | where {$_.LastwriteTime -le "$Lastwrite"}
foreach ($File in $Files)
{
if ($File -ne $Null)
{
write-host "Deleting File $File" backgroundcolor "DarkRed"
Remove-item $File.Fullname | out-null
}
else
write-host "No more files to delete" -forgroundcolor "Green"
}
}
$Files
ว่างเปล่ามันจะไม่ป้อนคำสั่งforeach คุณควรวาง foreach ในคำสั่งif