Learn R Programming

R.filesets (version 2.15.1)

gzip.GenericDataFile: Compresses/uncompresses a file

Description

Compresses/uncompresses a file using gzip compression. When compressing (uncompressing), the new filename has suffix .gz appended (removed), which is also used to test if a file is gzip'ed or not.

Usage

# S3 method for GenericDataFile
gzip(this, ...)
 # S3 method for GenericDataFile
gunzip(this, ...)
 # S3 method for GenericDataFile
isGzipped(this, ...)

Value

Returns (invisibly) the updated pathname. When compressing (uncompressing), an exception is thrown if the file is already compressed (not compressed). An exception is thrown if the file does not exist.

Arguments

...

Arguments passed to "R.utils::gzip" and "R.utils::gunzip", respectively.

Author

Henrik Bengtsson

See Also

Internally gzip is used. For more information see GenericDataFile.