System.IO.Compression.ZipFileExtensions.CreateEntryFromFile C# (CSharp) Méthode

CreateEntryFromFile() public static méthode

Adds a file from the file system to the archive under the specified entry name. The new entry in the archive will contain the contents of the file. The last write time of the archive entry is set to the last write time of the file on the file system. If an entry with the specified name already exists in the archive, a second entry will be created that has an identical name. If the specified source file has an invalid last modified time, the first datetime representable in the Zip timestamp format (midnight on January 1, 1980) will be used.

If an entry with the specified name already exists in the archive, a second entry will be created that has an identical name.

Since no CompressionLevel is specified, the default provided by the implementation of the underlying compression algorithm will be used; the ZipArchive will not impose its own default. (Currently, the underlying compression algorithm is provided by the System.IO.Compression.DeflateStream class.)

sourceFileName is a zero-length string, contains only white space, or contains one or more /// invalid characters as defined by InvalidPathChars. -or- entryName is a zero-length string. sourceFileName or entryName is null. In sourceFileName, the specified path, file name, or both exceed the system-defined maximum length. /// For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. The specified sourceFileName is invalid, (for example, it is on an unmapped drive). An I/O error occurred while opening the file specified by sourceFileName. sourceFileName specified a directory. -or- The caller does not have the /// required permission. The file specified in sourceFileName was not found. sourceFileName is in an invalid format or the ZipArchive does not support writing. The ZipArchive has already been closed.
public static CreateEntryFromFile ( this destination, string sourceFileName, string entryName ) : ZipArchiveEntry
destination this
sourceFileName string The path to the file on the file system to be copied from. The path is permitted to specify /// relative or absolute path information. Relative path information is interpreted as relative to the current working directory.
entryName string The name of the entry to be created.
Résultat ZipArchiveEntry
        public static ZipArchiveEntry CreateEntryFromFile(this ZipArchive destination, string sourceFileName, string entryName)
        {
            Contract.Ensures(Contract.Result<ZipArchiveEntry>() != null);
            Contract.EndContractBlock();

            return DoCreateEntryFromFile(destination, sourceFileName, entryName, null);
        }

Same methods

ZipFileExtensions::CreateEntryFromFile ( this destination, string sourceFileName, string entryName, CompressionLevel compressionLevel ) : ZipArchiveEntry