ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

MD5-SHA256 - Portable checksum tool providing file details as well

(1/1)

dcwul62:
Up front, I know..., there are many MD5-SHA tools around and I have looked at quite a few.

Regretfully I haven't found the right one, although, one comes very close.

I am looking for a small portable checksum verifier that :

(1)
provides following details:
- Filename
- path (optional)
- file size
- modified date
- created date (optional)
- MD5
- SHA1/SHA256
(and maybe some other checking options, like CRC32 or so)


(2) send that to clipboard, but the details should not be side-by-side
i.e. not..  Filename,  path (optional),  file size..etc.
but below each other (like above)


Nirsoft 'HashMyFiles' comes very close.
It is putting the details side-by-side though and I would need to manually adjust that.
Also it does not add text: like
Filename: ...
Filesize :  ...
etc.

See screenshot.

=
MD5-SHA256 - Portable checksum tool providing file details as well
=

Any suggestions?

Thanks
=

4wd:

--- Code: Text ---C:\>hashmyfiles.exe /file "K:\P4215986.xmp" /stext k:\test.txt && type K:\test.txt | clip

--- Code: Text ---==================================================Filename          : P4215986.xmpMD5               : 0ada7ba33f926cebf313c066aaea30bfSHA1              : f3fdb14fecc0f27f09b74a203ec5f5be75886956CRC32             : 91167e98SHA-256           : 6d662695acc54955cf984b47dfb2b9aa077957c2155d739b263d2fcdecc99309SHA-512           : 52d2cf8849a99304ffafa75e56fff06861b83b87b98369166771e6655b8bdf7b3b40b0345a6ea5587bf14f3cb5b8901ecbe889191d82b5aa74ef01aada5b5f97SHA-384           : 769bd7d18c4321dc53779e7e4449edd459b8356ae138422c7db7e1928ff24396dc3faa17e7f019c91791a704f4042824Full Path         : K:\P4215986.xmpModified Time     : 8/08/2017 16:39:44Created Time      : 8/08/2017 16:39:44File Size         : 1,692File Version      : Product Version   : Identical         : Extension         : xmpFile Attributes   : A==================================================

skwire:
Regretfully I haven't found the right one, although, one comes very close.-dcwul62 (August 08, 2017, 01:19 AM)
--- End quote ---

Since it's extremely doubtful that you're going to find an app that does exactly what you want, consider using a small script that formats HashMyFiles' clipboard data.  Here's an AHK example:


--- Code: Autohotkey ---myNewText  := "" Loop, Parse, Clipboard, `n, `r{    If ( A_LoopField )    {        myArray := StrSplit( A_LoopField, A_Tab )         myNewText .= "Filename: "      . myArray[ 1 ] . "`r`n"                  .  "Filesize: "      . myArray[ 2 ] . "`r`n"                  .  "Modified date: " . myArray[ 3 ] . "`r`n"                  .  "Creation data: " . myArray[ 4 ] . "`r`n"                  .  "MD5: "           . myArray[ 5 ] . "`r`n"                  .  "SHA256: "        . myArray[ 6 ] . "`r`n`r`n"    }} Clipboard := myNewText
I call these ClipEx (CLIPboard EXchanger) scripts and I use an extensive amount of them in my day-to-day routine.

dcwul62:
Thank you both!
I'll check it out.

Many thanks again.

=

Navigation

[0] Message Index

Go to full version