We are pulling RSS feed using VBScript but have encountered a small problem. The RSS XML file can't be overwriten (if done so we will encounter some serious problem) and therefore the XML file recieves a new name which we then unfortunately don't know how to access.
So the file "example.xml" gets a new name as "example;001.xml", the next time it is updated the file is example;002.xml and so on.
How do I target this?
were calling the file like this:
If rssFeed = "" Then
rssFeed = "C:\Documents and Settings\All Users\Documents\Scala\Content\example.xml"
End If
but this targets the exact file path and file example.xml
but as we get new files the right (latest) files are not accessed.
How do we target the vbscript to be able to read this most recent file?
Thanx a bunch for all your help!
So the file "example.xml" gets a new name as "example;001.xml", the next time it is updated the file is example;002.xml and so on.
How do I target this?
were calling the file like this:
If rssFeed = "" Then
rssFeed = "C:\Documents and Settings\All Users\Documents\Scala\Content\example.xml"
End If
but this targets the exact file path and file example.xml
but as we get new files the right (latest) files are not accessed.
How do we target the vbscript to be able to read this most recent file?
Thanx a bunch for all your help!