Example #1
0
        /// <summary>
        /// Extracts files from a ZIP archive file.
        /// </summary>
        /// <param name="zipPath">Path to the input ZIP archive.</param>
        /// <param name="targetFolder">Path to the output folder.</param>
        /// <param name="createFolder">Pass <c>true</c> to place the output in a subfolder named for the ZIP archive.</param>
        public static void Unzip(string zipPath, string targetFolder, bool createFolder)
        {
            ZipFile archive = null;
            string  outPath;

            try
            {
                archive = new ZipFile(zipPath);
                outPath = targetFolder;

                if (createFolder)
                {
                    outPath = Path.Combine(outPath, Helper.GetFileNameWithoutExtension(zipPath));
                }

                foreach (ZipEntry entry in archive)
                {
                    Stream         inStream  = null;
                    EnhancedStream outStream = null;
                    string         outFile;

                    outFile = Path.Combine(outPath, entry.Name);
                    Helper.CreateFileTree(outFile);

                    try
                    {
                        inStream  = archive.GetInputStream(entry);
                        outStream = new EnhancedFileStream(outFile, FileMode.Create, FileAccess.ReadWrite);

                        outStream.CopyFrom(inStream, -1);
                    }
                    finally
                    {
                        if (inStream != null)
                        {
                            inStream.Close();
                        }

                        if (outStream != null)
                        {
                            outStream.Close();
                        }

                        File.SetCreationTime(outFile, entry.DateTime);
                        File.SetLastWriteTime(outFile, entry.DateTime);
                    }
                }
            }
            finally
            {
                if (archive != null)
                {
                    archive.Close();
                }
            }
        }
Example #2
0
        /// <summary>
        /// Executes the specified UNZIP command.
        /// </summary>
        /// <param name="args">The command arguments.</param>
        /// <returns>0 on success, a non-zero error code otherwise.</returns>
        public static int Execute(string[] args)
        {
            const string usage =
                @"
Usage: 

-------------------------------------------------------------------------------
vegomatic unzip [-o:<path>] [-r] [-fn] <pattern>

Unzips the specified files to the current directory.

    -o:<path>   specifies the folder where extracted files will
                be written.  Files will be written to the current
                directory if this option is not present.

    -r          indicates that the file pattern
                should be searched recursively.

    -fn         indicates that zip files will be extracted
                to a folder named by the zip archive file.

    <pattern>   specifies the wildcarded pattern for the
                files to be extracted.

";
            bool   recursive  = false;
            bool   folderName = false;
            string outFolder  = Environment.CurrentDirectory;
            string pattern;

            string[] files;
            int      cExtracted;

            if (args.Length < 1)
            {
                Program.Error(usage);
                return(1);
            }

            for (int i = 0; i < args.Length - 1; i++)
            {
                string arg = args[i];

                if (arg.StartsWith("-o:"))
                {
                    outFolder = Path.GetFullPath(arg.Substring(3));
                }
                else if (arg == "-r")
                {
                    recursive = true;
                }
                else if (arg == "-fn")
                {
                    folderName = true;
                }
                else
                {
                    Program.Error(usage);
                    return(1);
                }
            }

            pattern = args[args.Length - 1];
            files   = Helper.GetFilesByPattern(pattern, recursive ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly);

            cExtracted = 0;
            Program.Output("[{0}] files found.", files.Length);

            foreach (string file in files)
            {
                ZipFile archive = null;
                string  outPath;

                try
                {
                    archive = new ZipFile(file);
                    outPath = Helper.AddTrailingSlash(outFolder);

                    if (folderName)
                    {
                        outPath += Helper.AddTrailingSlash(Helper.GetFileNameWithoutExtension(file));
                    }

                    foreach (ZipEntry entry in archive)
                    {
                        Stream         inStream  = null;
                        EnhancedStream outStream = null;
                        string         outFile;

                        outFile = outPath + entry.Name;
                        Helper.CreateFileTree(outFile);

                        Program.Output("Extract: {0}", entry.Name);

                        try
                        {
                            inStream  = archive.GetInputStream(entry);
                            outStream = new EnhancedFileStream(outFile, FileMode.Create, FileAccess.ReadWrite);

                            outStream.CopyFrom(inStream, -1);
                            cExtracted++;
                        }
                        finally
                        {
                            if (inStream != null)
                            {
                                inStream.Close();
                            }

                            if (outStream != null)
                            {
                                outStream.Close();
                            }

                            File.SetCreationTime(outFile, entry.DateTime);
                            File.SetLastWriteTime(outFile, entry.DateTime);
                        }
                    }
                }
                catch (Exception e)
                {
                    Program.Error("{0}: {1}", e.Message, file);
                }
                finally
                {
                    if (archive != null)
                    {
                        archive.Close();
                    }
                }
            }

            Program.Output("[{0}] files extracted from [{1}] zip archives.", cExtracted, files.Length);

            return(0);
        }