标题: [其他] 批量获取文件路径、文件名、文件大小、MD5、文件创建时间 [打印本页]
作者: 304802301 时间: 2021-4-26 20:57 标题: 批量获取文件路径、文件名、文件大小、MD5、文件创建时间
求助大神,在一个文件夹下面有几百万个文件,几万个文件夹,我需要批量获取所有文件的【文件路径、文件名、文件大小、MD5、文件创建时间】,并记录到txt中,请大神帮忙
作者: 1152 时间: 2021-4-26 21:00
本帖最后由 1152 于 2021-4-26 21:07 编辑
- del 信息.txt&mode con cols=120 lines=10000&dir /q /s /4>>信息.txt&type 信息.txt
复制代码
作者: newswan 时间: 2021-4-26 23:43
回复 2# 1152
去安装 fciv 或者 Sigcheck 。 fciv 太老,某些情况好像不适合。
作者: newswan 时间: 2021-4-27 09:15
是 “文件创建时间” , powershell 方便。
搜了一下,把这两句组合起来- powershell -c "get-filehash * -Algorithm md5 | select Hash,Path"
- powershell -c "dir|?{!$_.PSIsContainer}|select CreationTime,Length,FullName"
复制代码
作者: newswan 时间: 2021-4-28 01:05
本帖最后由 newswan 于 2021-4-28 01:06 编辑
- set _path_=D:\
- set _psline_= write-host (get-filehash $_.fullname -Algorithm md5).hash,$_.creationtime,$_.length,$_.fullname ;
- powershell -c "Get-ChildItem -Recurse %_path_% | ?{^!$_.PSIsContainer} | foreach-object -process{%_psline_%}"
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |