-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.xml
More file actions
32 lines (32 loc) · 1.83 KB
/
Config.xml
File metadata and controls
32 lines (32 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<!--The encryption Key-->
<EncryptionPassword>TopSecretPasswordHere</EncryptionPassword>
<!--
Set attribute DeleteWhenFinished to True to the Send node to clear files that are finished after each step of the processing.
If not, use the DeleteAllManually.bat executable script to remove all processed files later.
-->
<Send DeleteWhenFinished="True" ZipFromSourceFolder="True" CopyFromZipToTargetFolder="True">
<!--The source folder-->
<SourceFolder>C:\_code\EncryptAndMigrateFiles\110_sourceFolderSend</SourceFolder>
<!--The folder where encrypted archives will be placed before sending-->
<TargetZipFolder>C:\_code\EncryptAndMigrateFiles\120_targetSendZipFolder</TargetZipFolder>
<!--The folder where encrypted archives will be sent to-->
<TargetCopyFolder>C:\_code\EncryptAndMigrateFiles\130_targetSendCopyFolder</TargetCopyFolder>
</Send>
<!--
Set attribute DeleteWhenFinished to True to the Receive node clear files that are finished after each step of the processing.
If not, use the DeleteAllManually.bat executable script to remove all processed files later.
-->
<Receive DeleteWhenFinished="True" CopyFromSourceToTargetFolder="True" UnzipToTargetFolder="True">
<!--The source folder-->
<SourceFolder>C:\_code\EncryptAndMigrateFiles\210_sourceFolderReceive</SourceFolder>
<!--The folder where encrypted archives will be received-->
<TargetCopyFolder>C:\_code\EncryptAndMigrateFiles\220_targetReceiveCopyFolder</TargetCopyFolder>
<!--The folder where encrypted archives will be unzipped to-->
<TargetUnzipFolder>C:\_code\EncryptAndMigrateFiles\230_targetReceiveUnzipFolder</TargetUnzipFolder>
</Receive>
<Tests IncludeLargeFiles="False" UseSameTestContentForReceiveAndSend="True">
<TestDataFolder>C:\_code\EncryptAndMigrateFiles\_TestData</TestDataFolder>
</Tests>
</Root>