# Settings

When multiple instances are used to migrate files AND azure jobs are used, specify an unique number in the local Epona.Migrate.exe.config

<!-- If mulitple migration instances are used, use a unique Number for each instance, use values between 1 and 99 -->
<add key="UniqueInstanceNumber" value="1" />

This unique number is used in the database in the table _EDMSAzureMigrationJob, column MigrationBatch. Only jobs with the same number are processed by the current migration instance.

# UniqueFileNameSuffix

When a file with the same name already exists, the migrate tool will create an unique filename by appending an incremental number to the filename. By default only the number is added. Optionally specify a format. the c# string.format command will be used to format the number ({0} is replaced by the number), see full formatting options (opens new window). Include a space in the format if you want the start with a space character.

For example:

  • ({0}) -> (1)
  • ({0:000}) => (001)

# Replace TargetFolder

The relative folder path (relative to the doclib) can be remapped using the ReplaceFolder settings.

Specify a source (path) and targetpath to change the mapping. Use a fixed name __SKIP__ (double underscores) to skip the migration of the folder and subfolder(s). Use a ; or a new line to add multiple mappings.

Use a fixed name __ROOT__ (double underscore) to map (only) the rootfolder to another folder.

Samples:

  • =Documents
    Migrate all files in the root and all subfolders to the subfolder Documents

  • E-Mails=Emails
    Migrate all files and subfolders in E-Mails to the subfolder Emails

  • =Documents;__ROOT__=Documents
    Migrate all files from the rootfolder to the Documents folder and all other (sub)folders also to the (relative)Documents folder.

  • =Documents;Emails;Docs=Documents
    Migrate all files in the root and all subfolders except for Emails and Docs to the Documents folder. Move Emails to the Emails folders and Docs to the Documents subfolder

  • =Migrate;Emails/Attachments=__SKIP__
    Migrate all files in the root and all subfolders except for Emails/Attachment to the Documents folder. Skip the files in the Emails/Attachment and subfolder(s).

Last Updated: 9/20/2024, 5:07:56 PM