ExtractToDirectory

CabArchive.ExtractToDirectory method

Extracts all the files in the archive to the directory provided.

public void ExtractToDirectory(string destinationDirectory)
ParameterTypeDescription
destinationDirectoryStringThe path to the directory to place the extracted files in.

Exceptions

exceptioncondition
ArgumentNullExceptionpath is null
PathTooLongExceptionThe specified path, file name, or both exceed the system-defined maximum length.
SecurityExceptionThe caller does not have the required permission to access existing directory.
NotSupportedExceptionIf directory does not exist, path contains a colon character (:) that is not part of a drive label (“C:").
ArgumentExceptionpath is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the System.IO.Path.GetInvalidPathChars method. -or- path is prefixed with, or contains, only a colon character (:).
IOExceptionThe directory specified by path is a file. -or- The network name is not known.

Remarks

If the directory does not exist, it will be created.

Examples

using (var archive = new CabArchive("archive.cab")) 
{ 
   archive.ExtractToDirectory("C:\extracted");
}

See Also