Command-line Syntax
> ZipUp.exe <ftpSettings.xml> <jobs.xml>
Configuration
FTP Settings
The FTP settings are passed on to ZipUp via XML-file.
<?xml version="1.0" encoding="utf-8"?>
<FtpSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<User Name="BackupUser" Password="BackupUserPassword" />
<Host Name="backupserver.tld" />
</FtpSettings>
Jobs
The second argument XML-file passed on to ZipUp describes which contents are to be uploaded. This file can contain severalJobs. A Job describes a single ZIP-archive on the destination FTP location. EachJob can be composed of multiple Sources. For every Source a FileMask filter can be specified, as well as whether or not sub-directories should be included or if empty folders should also be included in the archive.
<?xml version="1.0" encoding="IBM437"?>
<Jobs xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Job Destination="BackupFileA.zip">
<Sources>
<Source RootPath="C:/SourceDirectoryA/" FileMask="*.rar" IncludeSubdirs="false" IncludeEmptyFolders="true" />
</Sources>
</Job>
<Job Destination="BackupFileB.zip">
<Sources>
<Source RootPath="C:/SourceDirectoryB1/" FileMask="*" IncludeSubdirs="true" IncludeEmptyFolders="true" />
<Source RootPath="C:/SourceDirectoryB2/" FileMask="*.bak" IncludeSubdirs="false" IncludeEmptyFolders="false" />
<Source RootPath="C:/SourceDirectoryB3/" FileMask="*" IncludeSubdirs="false" IncludeEmptyFolders="true" />
</Sources>
</Job>
</Jobs>