Forum Discussion
Murali_1
14 years agoNew Contributor
Hi Rachel,
one way of doing it is using vbscript string concatenation,
C:\Folder\filename1.23.4567.8910.Blah.zip
String1="C:\Folder\filename1.23.4567."
String2=build version
String3="Blah.zip"
Finally, the file name will be
FileName=String1 & String2 & String3
Here, the file name is constructed dynamically in run time.
Pls let me know if this solution helps you or you are looking for something different.
one way of doing it is using vbscript string concatenation,
C:\Folder\filename1.23.4567.8910.Blah.zip
String1="C:\Folder\filename1.23.4567."
String2=build version
String3="Blah.zip"
Finally, the file name will be
FileName=String1 & String2 & String3
Here, the file name is constructed dynamically in run time.
Pls let me know if this solution helps you or you are looking for something different.