I need to send someone a 10GB file that has inside several thousands of files.
I know that in Ubuntu you can use the next command in the terminal: md5sum <directory_name> and this returns a hash.
I am using Windows 11 and I have tried several things:
- First I tried calculating the hash of just one file:
CertUtil -hashfile .\file.png MD5and this returned me a hash value. - Then I tried the same but with the whole directory containing all the files:
CertUtil -hashfile "path_to_directory\*" MD5but I get an error.
Error:
CertUtil: -hashfile error del comando: 0x80070002 (WIN32: 2 ERROR_FILE_NOT_FOUND)
CertUtil: El sistema no puede encontrar el archivo especificado.
What should I do?