Sample code for 30+ languages & platforms
Xojo Plugin

Compute CRC32 of a File

Calculates the CRC32 of a file's contents and returns the 32-bit CRC as a hex string.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim zipCrc As New Chilkat.ZipCrc
// Use a relative for absolute path to the file..
Dim crc As Int32
crc = zipCrc.FileCrc("qa_data/hamlet.xml")
Dim hexStr As String
hexStr = zipCrc.ToHex(crc)
System.DebugLog(hexStr)