MappingCreatearchive()

Creates an OpenBD archive for use with the mappings

Usage

BOOLEAN = MappingCreatearchive( archivefile, directory, overwrite )
Argument Summary
archivefile the full path of the archive file
directory the directory to create an archive from. All subdirectories will be added. Directories beginning with [.] will not be added
overwrite if the archivefile already exists, overwrite it. defaults to false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

MappingCreatearchive(
   archivefile=?, 
   directory=?, 
   overwrite=?
);

Supports passing parameters as a structure using ArgumentCollection:

MappingCreatearchive( ArgumentCollection={
   archivefile : ?, 
   directory : ?, 
   overwrite : ?
} );