Checksum display of a list of files
Posted: 23 Aug 2011 20:30
I'm looking for a way to display the checksum of a selected group of files. Sometimes I have a bunch of files with different names, but identical content.
This sort of works:
foreach($file, <get selecteditemspathnames |>) {
text hash("crc32",$file,1);
}
but awkwardly; it pops up a message box for each file. I'd like to see the checksums for all the files at once, ideally next to the file name.
(I miss having that option in another file manager, it was an optional column you could display in the file list. Too bad x******2 was a buggy POS for me.)
This sort of works:
foreach($file, <get selecteditemspathnames |>) {
text hash("crc32",$file,1);
}
but awkwardly; it pops up a message box for each file. I'd like to see the checksums for all the files at once, ideally next to the file name.
(I miss having that option in another file manager, it was an optional column you could display in the file list. Too bad x******2 was a buggy POS for me.)