|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| disk.file.compress(Source, Target) |
Parameters
| STRING | Source | Source file
| | STRING | Target | Target file |
Return value
| Array containing the list of available drive letters. |
Description
Create a compressed copy of a file using Huffman Coding (no header).
Compression ratios are very good with text, HTML, scripts, and uncompressed bitmap files.
Use disk.file.expand to expand the compressed file. |
MioScript Sample Code
disk.file.compress(
path.desktop("source.txt"),
path.rsc("target.huff")
) |
|
|
|