ICSharpCode.SharpZipLib.Zip.FastZip.ProcessFile C# (CSharp) Méthode

ProcessFile() private méthode

private ProcessFile ( object sender, ScanEventArgs e ) : void
sender object
e ICSharpCode.SharpZipLib.Core.ScanEventArgs
Résultat void
        void ProcessFile(object sender, ScanEventArgs e)
        {
            if ((events_ != null) && (events_.ProcessFile != null)) {
                events_.ProcessFile(sender, e);
            }

            if (e.ContinueRunning) {
                try {
                    // The open below is equivalent to OpenRead which gaurantees that if opened the
                    // file will not be changed by subsequent openers, but precludes opening in some cases
                    // were it could succeed. ie the open may fail as its already open for writing and the share mode should reflect that.
                    using (FileStream stream = File.Open(e.Name, FileMode.Open, FileAccess.Read, FileShare.Read)) {
                        ZipEntry entry = entryFactory_.MakeFileEntry(e.Name);
                        outputStream_.PutNextEntry(entry);
                        AddFileContents(e.Name, stream);
                    }
                } catch (Exception ex) {
                    if (events_ != null) {
                        continueRunning_ = events_.OnFileFailure(e.Name, ex);
                    } else {
                        continueRunning_ = false;
                        throw;
                    }
                }
            }
        }