TarFileSet Class

Summary

A NAnt.Compression.Types.TarFileSet is a FileSet with extra attributes useful in the context of the NAnt.Compression.Tasks.TarTask.
Assembly
NAnt.Compression.dll
Namespace
NAnt.Compression.Types
Base Types
  • FileSet
graph BT Type-->Base0["FileSet"] Type["TarFileSet"] class Type type-node

Syntax

[ElementName("tarfileset")]
public class TarFileSet : FileSet

Attributes

Type Description
ElementName

Properties

Name Value Summary
DirMode int
A 3 digit octal string, specify the user, group and other modes in the standard Unix fashion. Only applies to directories. The default is 755.
FileMode int
A 3 digit octal string, specify the user, group and other modes in the standard Unix fashion. Only applies to plain files. The default is 644.
Gid int
The group identifier (GID) for the tar entry.
GroupName string
The group name for the tar entry.
Prefix string
The top level directory prefix. If set, all file and directory paths in the fileset will have this value prepended. Can either be a single directory name or a "/" separated path.
Uid int
The user identifier (UID) for the tar entry.
UserName string
The username for the tar entry.