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.

Était-ce utile?

La solution 2

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

Autres conseils

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
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top