如何使用 PowerShell 按日期对文件进行分组?
我有一个包含 2000 多个文件的文件夹。我想按日期对文件进行计数。
所以:
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 2010-03-15 12:54 AM 10364953 file1.txt
-a--- 2010-03-15 1:07 AM 10650503 file2.txt
-a--- 2010-03-16 1:20 AM 10118657 file3.txt
-a--- 2010-03-16 1:33 AM 9735542 file4.txt
-a--- 2010-03-18 1:46 AM 10666979 file5.txt
我想看看:
Date Count
---------- ------
2010-03-15 2
2010-03-16 2
2010-03-18 1
谢谢!
I have a folder with 2000+ files. I want to count the files by date.
so with:
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 2010-03-15 12:54 AM 10364953 file1.txt
-a--- 2010-03-15 1:07 AM 10650503 file2.txt
-a--- 2010-03-16 1:20 AM 10118657 file3.txt
-a--- 2010-03-16 1:33 AM 9735542 file4.txt
-a--- 2010-03-18 1:46 AM 10666979 file5.txt
I'd like to see:
Date Count
---------- ------
2010-03-15 2
2010-03-16 2
2010-03-18 1
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Group-Object 可以非常轻松地处理此类杂务:
如果您只想查看格式表上的日期和计数钉,如下所示:
Group-Object can handle this sort of chore pretty easily:
If you only want to see the date and count tack on the Format-Table as shown below:
您可以使用哈希表来收集您需要的信息:
You can use a hash table to collect the information you need: