Extract Zip File
  • 17 Feb 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Extract Zip File

  • Dark
    Light
  • PDF

Article Summary

This is generated from the built in components of Otter 3.0.0, and may be different than what you have installed (especially if you have extensions); go to [User Icon] -> Documentation within your BuildMaster instance to see exactly what operations are available.

Extract Zip File

Extracts a zip file on a server.

Script usage:

Extract-ZipFile(
	Name: <text>,
	[Directory: <text>],
	[ClearTarget: <true/false>],
	[Overwrite: <true/false>]
);

This operation may be prefixed with Files::, although this is a built-in namespace and isn't really necessary.

Arguments:

NameFormatScript UsageUsage Notes
☆ File name (default)
text
Name
 This argument is required.
Target directory
text
Directory
Clear target directory
true/false
ClearTarget
Overwrite
true/false
Overwrite

Example:

# extracts archive.zip in ArchiveContents after deleting the directory contents
Extract-ZipFile(
    Name: archive.zip,
    Directory: E:\Services\ArchiveContents,
    ClearTarget: true
);

Was this article helpful?