gpt4 book ai didi

Powershell getfiles.count() 排除 thumbs.db

转载 作者:行者123 更新时间:2023-12-02 23:05:28 25 4
gpt4 key购买 nike

我们有一个每天运行的脚本,用于从人们用来传输数据的区域中删除旧文件和目录。除了一小部分,一切都很好。我想删除超过 7 天且为空的文件夹。由于 thumbs.db 文件,脚本总是在文件夹中显示 1 个文件。我想我可以检查一下这个文件是否是 thumb.db,如果是,就删除该文件夹,但我确信有更好的方法。

 
$location = Get-ChildItem \\dropzone -exclude thumbs.db
foreach ($item in $location) {

other stuff here going deeper into the tree...

if(($item.GetFiles().Count -eq 0) -and ($item.GetDirectories().Count -eq 0)) {

This is where I delete the folder but because the folder always has
the Thumbs.db system file we never get here

}

}

最佳答案

$NumberOfFiles = (gci -Force $dir | ?{$_ -notmatch "thumbs.db"}).count

关于Powershell getfiles.count() 排除 thumbs.db,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11021390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com