dongyikong6207 2017-05-18 18:42
浏览 301
已采纳

文件详细信息:大小,上次修改时间,md5值,路径\文件名

Media archiving. Windows. PowerShell. (or by php in command line?)

Any way I can include the md5 hash value for each file? This script provides file size, last modified time, path\filename; having an md5 value would be useful. (Capability to handle entire disks, 100K+ files/many TBs, 4K video [large] files, etc. with ease (i.e., a clean and robust function].)

The results needs to be written into a .txt file and placed into the current working dir.

Get-ChildItem -Recurse | select Length,LastWriteTime,FullName | Format-Table -Wrap -AutoSize | Out-File filelist.txt
  • 写回答

1条回答 默认 最新

  • dragon202076 2017-05-18 19:07
    关注

    If you're using PowerShell v5 (maybe 4?), you can use get-filehash to compute the hash of each file. Then use that in a computed property in select-object.

    Get-childitem -recurse -file | select-object length,lastwritetime,fullname,@{n="Hash";e={get-filehash -algorithm MD5 -path $_.FullName | Select-object -expandproperty Hash}}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部