|
Bucket Explorer facilitates you to create multiple Commander Configuration XML files using ‘
Edit Commander Config
’ option or it can be created manually. . You can save Commander Configuration XML file with desired name and at desired location on your local system. You can create multiple Commander Configuration XML files and can process them by providing their valid path at Bucket
Commander
action “configfilename”. It will enhance the Bucket Commander
scheduling
.
|
|
To run multiple instances of Bucket Commander, follow the steps below:-
-
Create multiple configuration files for
upload
,
download
and
copy
using
Tools -> Commander -> Edit Commander Config File
option of Bucket Explorer or manually.
Refer the following page it will explain in more detail.
-
After creating the multiple config files for Bucket Commander you can run multiple instances of Commander from multiple command prompt.
Refer the following page, to get more details about
|
The Format of the commander configuration file will be as below –
This is an Example file of commander configuration XML to explain the format:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<root>
<Debug>off</Debug>
<IgnoreRootFolderInQueueOperation>false</IgnoreRootFolderInQueueOperation>
<Upload>
<UploadContents>
<ParentVirtualFolderPath/>
<CompareNameAndSize>true</CompareNameAndSize>
<Overwrite>true</Overwrite>
<FileList>
<FilePath>C:\Documents and Settings\Udit\My Documents\FAQAnswers.doc</FilePath>
</FileList>
<Bucket>uploadsinglefiletest</Bucket>
</UploadContents>
</Upload>
<Download>
<DownloadContents>
<ParentVirtualFolderPath/>
<CompareNameAndSize>true</CompareNameAndSize>
<Overwrite>true</Overwrite>
<Bucket>basicTest</Bucket>
<DestinationFolderPath>C:\Documents and Settings\Udit\Desktop</DestinationFolderPath>
<ObjectList>
<ObjectPath Type="File">Set_grantee.doc</ObjectPath>
</ObjectList>
</DownloadContents>
</Download>
<CopyBucket>
<Copy>
<DestinationBucket>testTool</DestinationBucket>
<CompareNameAndSize>true</CompareNameAndSize>
<Overwrite>true</Overwrite>
<SourceBucket>uploadsinglefiletest</SourceBucket>
</Copy>
</CopyBucket>
<Debug>off</Debug>
</root>
|
|