Contents - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


FileTools[Compressed]

  

Contents

  

read the list of files contained in a zip archive

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Contents(file)

Parameters

filename

-

string (zip archive filename)

Description

• 

The Contents command reads the index of a zip file archive and returns a list of strings representing the names of the files contained in that archive.

• 

The list returned does not include the zip file name.  To read each member, L[i] returned in the contents list, use FileTools:-Compressed:-ReadFile( L[i] in zipfilename, options ).

• 

This command only works on zip files.  Files in gzip format do not contain sub-files.

• 

The filename option must be a string, not an open file handle, and not a subfile in zipfile member reference.

Examples

(1)

FileTools[Compressed][WriteFile]("first" in zipfile, "a 1st file");

(2)

FileTools[Compressed][WriteFile]("second" in zipfile, "a 2nd file");

(3)

(4)

[seq( FileTools:-Compressed:-ReadFile(F in zipfile, string), F in L)];

(5)

Compatibility

• 

The FileTools[Compressed][Contents] command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

FileTools[Compressed]

FileTools[Compressed][Close]

FileTools[Compressed][Open]

FileTools[Compressed][Write]

FileTools[Compressed][WriteFile]

 


Download Help Document