|
|
|
|
|
fSizeUncompressed (Function) In french: fTailleDécompacté Returns the size of a file before compression. When a file is decompressed by fUncompress, we recommend that you to compare the non-compressed size of file with the available disk space.
// Size of file before compression ResDecompressedSize = fSizeUncompressed("C:\MyDirectories\File.doc")
Syntax
<Result> = fSizeUncompressed(<File path>)
<Result>: Integer - Size of file before compression (in bytes),
- -1 if an error occurred. To get more details on the error, use ErrorInfo with the errMessage constant.
- -2 if the file was not compressed by fCompress or if the file was compressed by WINDEV version 4 (4.0 or 4.1).
<File path>: Character string Name and full (or relative) path of compressed file (up to 260 characters). A UNC path can be used. This file must have been compressed by fCompress. Wildcard characters (* and?) are not allowed.
Remarks fSizeUncompressed throws an error in the following cases: - the specified file does not exist,
- the name of the specified file is invalid,
- the file is already locked by another application.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|