固定連結網頁

2017年5月10日 星期三

File Hash

在 Window 下取得檔案指紋(Hash), 可用 fciv.exe (檔案加總檢查碼完整性檢查器公用程式),
但每次都要用命令列,似乎有點麻煩。

所以懶惰蟲就寫了一個 FileHash.bat,這檔案要跟 fciv.exe 放在一起,然後使用時把檔案拖曳到FileHash.bat 上面就可以了。



 FileHash.bat 簡易內容::

@echo off
REM bat file location "%~dp0"
set BatFolder=%~dp0

IF (%1)==() goto EchoTar
set FileTarget=%1
set FileTarget=%FileTarget:"=%

:EchoTar
echo %FileTarget%
if "(%FileTarget%)"=="()" goto NoParam

"%BatFolder%fciv.exe" "%FileTarget%" -md5

pause
goto :eof
:NoParam
echo You can drop file to this batch file.
pause


檔案Hash計算結果:

//
// File Checksum Integrity Verifier version 2.05.
//
f0a966c0d130be2760311f3f359cd98f c:\users\downloads\t29.rar
請按任意鍵繼續 . . .




沒有留言:

張貼留言

手機選擇帳號後,按下發布 要再點選一次發布哦