Previous Topic

Next Topic

Book Contents

Book Index

Trigger Files

Using its scripting abilities, MOVEit Automation can be configured to use a "trigger" file to force the upload of a second "data" file of the same name from a local folder. This is a situation often encountered with mainframe file transfers, where a mainframe determines which files are to be transferred by using trigger files such as these.

In this example, we have a "trigger" folder named "d:\temp\altin". This folder contains three very small text files. (The contents of these files can be anything, but it is the names of the files which are important.)

We also have a "data" folder named "d:\temp\realdata". This folder contains 6 data files, but we only want to move a few of these files up to our selected destination.

We create a new script called "GetNamedFile.vbs" and import it into MOVEit Automation as a process named "GetNamedFile". This process does three things:

Dim FileName, FilePath, FullPath 

FileName = MIMacro("[OrigName]") 
DataPath = MIGetTaskParam("DataPath") 
FullPath = DataPath & "\" & FileName 

MIReplaceCacheFile(FullPath) MIDeleteFileSecure(FullPath)