|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| disk.file.expand(Source, Target) |
Parameters
| STRING | Source | Compressed source file
| | STRING | Target | Target file |
Return value
| Array containing the list of available drive letters. |
Description
Expand a file compressed with the Huffman Coding (no header).
Use disk.file.compress to compress a file. |
MioScript Sample Code
disk.file.expand(
path.desktop("mytext.huff"),
path.rsc("mytext.txt")
) |
|
|
|