[批处理]获取文件夹及下层文件夹的md5码

@echo off & cd /d "%~dp0"
set /a n=0
(
for /r %%i in (*) do (
set /p="%%i|%%~nxi|"<nul
certutil -hashfile "%%i" MD5 | findstr /v "[^0-9a-z]"
set /a "n+=1"
call title %%n%%
)
) > "MD5.txt"
pause&exit

linux 下

find ./ -type f -print0 | xargs -0 md5sum > ./all.md5

原创文章,作者:熊阿初,如若转载,请注明出处:https://www.guofc.com/1080.html

(0)
熊阿初熊阿初
上一篇 2023年4月3日 下午2:19
下一篇 2023年5月30日 下午5:19

相关推荐

发表回复

登录后才能评论