Create Zip File
- 17 Feb 2022
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
Create Zip File
- Updated on 17 Feb 2022
- 1 Minute to read
-
Print
-
DarkLight
-
PDF
This is generated from the built in components of BuildMaster 7.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.
Create Zip File
Creates a zip file on a server.
Script usage:
Create-ZipFile( Name: <text>, Directory: <text>, [Overwrite: <true/false>] );
This operation may be prefixed with Files::
, although this is a built-in namespace and isn't really necessary.
Arguments:
Name | Format | Script Usage | Usage Notes |
---|---|---|---|
☆ Zip file name | text | Name | This argument is required. |
☆ Source directory | text | Directory | This argument is required. |
Overwrite | true/false | Overwrite |
See also:
Example:
# zip all log files and place them in the backup directory Create-ZipFile( Name: E:\backup\logs.$Date("yyyyMMdd-hhmmss").zip, Directory: E:\site\logs );
Was this article helpful?