User:RhoSigma/Test

From QB64 Phoenix Edition Wiki
Revision as of 16:19, 30 May 2024 by RhoSigma (talk | contribs) (Created page with "<!DOCTYPE html> <html> <head> <title>GetFileMD5</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> →‎This file is deliberately empty.: </style> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <p><em><a href="_Md5_Contents.html">back to Table of Contents</a></em></p> <hr /> <h2>GetFileMD5$ <em>(function)</em></h2> <p>Compute the MD5 Message-Digest of the specified file. The file can contain any...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<!DOCTYPE html> <html> <head> <title>GetFileMD5</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> /* This file is deliberately empty. */ </style> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body>

<a href="_Md5_Contents.html">back to Table of Contents</a>


GetFileMD5$ (function)

Compute the MD5 Message-Digest of the specified file. The file can contain any text or binary data.


SYNTAX:

<code>digest$ = GetFileMD5$ (FileSpec$)
</code>

INPUTS:

FileSpec$ (STRING)

  • The path/file specification of the file you want to get the MD5 Message-Digest from.

RESULT:

digest$ (STRING)

  • The MD5 Message-Digest of the given file as hexadecimal string.
  • Will be an empty string, if the file could not be opened (either not found or not accessible).

<a href="_Md5_Contents.html">back to Table of Contents</a>

</body> </html>