Product Site

8.35. SysIsFileCompressed (Windows only)

Checks if a file is compressed. This function does not support wildcard specifications.

Parameters:
filename

The name of the file to check.

Returns:
0

The file is not compressed or does not exist.
1

The file is compressed.
Example 8.26. RexxUtil — SysIsFileCompressed
if SysIsFileCompressed(InputFile) then say "File is compressed!"
else say "File is not compressed or does not exist."