Hi,
When decompress a gzip file I receive the message "CRC Mismatch", code below, what could be? The zipped file is OK.
Dim In As InputStream
Dim compress As CompressedStreams
In = File.OpenInput(File.DirRootExternal, "carga0004.gz")
In = compress.WrapInputStream(In, "gzip")
Dim reader As TextReader
reader.Initialize(In)
Dim line As String
line = reader.ReadAll
Thanks for help
When decompress a gzip file I receive the message "CRC Mismatch", code below, what could be? The zipped file is OK.
Dim In As InputStream
Dim compress As CompressedStreams
In = File.OpenInput(File.DirRootExternal, "carga0004.gz")
In = compress.WrapInputStream(In, "gzip")
Dim reader As TextReader
reader.Initialize(In)
Dim line As String
line = reader.ReadAll
Thanks for help
Last edited: