Note: This API documentation is for FAKE version 4. The migration API documentation can be found
here. The API documentation for the new fake 5 modules can be found
here
BZip2
Operations and tasks for working with tar archives compressed with BZip2.
Functions and values
Function or value | Description |
compress
Signature: FileInfo -> seq<ArchiveFileSpec> -> unit
|
Constructs a function that will create a tar.bz2 archive from a set of files. |
Compress(...)
Signature: flatten:bool -> baseDir:DirectoryInfo -> archiveFile:FileInfo -> files:seq<FileInfo> -> unit
|
Creates a tar.bz2 archive with the given files. Parameters
|
CompressDir flatten baseDir archiveFile
Signature: flatten:bool -> baseDir:DirectoryInfo -> archiveFile:FileInfo -> unit
|
Creates a tar.bz2 archive containing all the files in a directory. Parameters
|
CompressDirWithDefaults(...)
Signature: baseDir:DirectoryInfo -> archiveFile:FileInfo -> unit
|
Creates a tar.bz2 archive containing all the files in a directory. Parameters
|
CompressSpecs archiveFile fileSpecs
Signature: archiveFile:FileInfo -> fileSpecs:seq<ArchiveFileSpec> -> unit
|
Creates a tar.bz2 archive with the given archive file specifications. Parameters
|
compressStream
Signature: Stream -> TarOutputStream
|
Wraps an output stream with a tar.bz2 compressor. |
CompressWithDefaults(...)
Signature: baseDir:DirectoryInfo -> archiveFile:FileInfo -> files:seq<FileInfo> -> unit
|
Creates a tar.bz2 archive with the given files with default parameters. Parameters
|
createFile(file)
Signature: file:FileInfo -> TarOutputStream
|
Creates a Parameters
|
extract extractDir archiveFile
Signature: extractDir:DirectoryInfo -> archiveFile:FileInfo -> unit
|
Extracts a tar.bz2 archive to a given directory. Parameters
|
extractStream
Signature: Stream -> TarInputStream
|
Wraps an input stream with a tar.gz decompressor. |