Hi,
I'm trying to create a VBScript module in VMPro to check if a file exists.
We're having +/- 100 Incoming Call Routes routed to the VMPro module. The module plays a dedicated wav based on the last 3 digits of the DDI.
Not all DDI's have a dedicated wav file, for those cases a default wav file should be played.
I was goofing around with a VBScript Action with the following script:
fso.FileExists(sFile) returns True or False correctly, though the result of the script is always Failure.
Any help is appreciated.
I've added the module as attachment.
I'm trying to create a VBScript module in VMPro to check if a file exists.
We're having +/- 100 Incoming Call Routes routed to the VMPro module. The module plays a dedicated wav based on the last 3 digits of the DDI.
Not all DDI's have a dedicated wav file, for those cases a default wav file should be played.
I was goofing around with a VBScript Action with the following script:
Code:
dim fso, sPath, sFile
sPath = "C:\Program Files\Avaya\IP Office\Voicemail Pro\VM\WAVS\Modules\mVBScript\"
sFile = sPath & $CP2 & ".wav"
Set fso = CreateObject("Scripting.FileSystemObject")
Voice.Result = fso.FileExists(sFile)
fso.FileExists(sFile) returns True or False correctly, though the result of the script is always Failure.
Any help is appreciated.
I've added the module as attachment.