Question

In VBScript how to separate Test1_QTP folder name alone from the below path. I need to extract "Test1_QTP" string into a variable.

C:\TeamTask\Automation\Daily\EB\20140508\Test1_QTP

Any suggestions are appreciated.

Was it helpful?

Solution 2

Dim strMyPath, strFileName
strMyPath = "C:\TeamTask\Automation\Daily\EB\20140508\Test1_QTP"
strFileName = Mid(strMyPath, InStrRev(strMyPath, "\") + 1)

OTHER TIPS

If the specified folder exists, you can use the FileSystemObject object instead of string manipulations:

strPath = "C:\TeamTask\Automation\Daily\EB\20140508\Test1_QTP"
Set fso = CreateObject("Scripting.FileSystemObject") 
strName = fso.GetFolder(strPath).Name
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top