InternalCreateArchive() private method

private InternalCreateArchive ( string outputFile, IEnumerable files ) : void
outputFile string
files IEnumerable
return void
Ejemplo n.º 1
0
        /// <summary>Create a tar archive with the given name, and containing the given set of files or directories, and using GZIP compression by default.</summary>
        /// <param name="outputFile">The name of the tar archive to create. The file must not exist at the time of the call.</param>
        /// <param name="filesOrDirectories">A list of filenames and/or directory names to be added to the archive.</param>
        /// <param name="options">The options to use during Tar operation.</param>
        public static void CreateArchive(
            string outputFile, IEnumerable<string> filesOrDirectories, Options options = null)
        {
            if (options == null)
            {
                options = new Options { Compression = TarCompression.GZip };
            }

            var tar = new Tar { TarOptions = options };
            tar.InternalCreateArchive(outputFile, filesOrDirectories);
        }
Ejemplo n.º 2
0
        /// <summary>Create a tar archive with the given name, and containing the given set of files or directories, and using GZIP compression by default.</summary>
        /// <param name="outputFile">The name of the tar archive to create. The file must not exist at the time of the call.</param>
        /// <param name="filesOrDirectories">A list of filenames and/or directory names to be added to the archive.</param>
        /// <param name="options">The options to use during Tar operation.</param>
        public static void CreateArchive(
            string outputFile, IEnumerable <string> filesOrDirectories, Options options = null)
        {
            if (options == null)
            {
                options = new Options {
                    Compression = TarCompression.GZip
                };
            }

            var tar = new Tar {
                TarOptions = options
            };

            tar.InternalCreateArchive(outputFile, filesOrDirectories);
        }