質問

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.

役に立ちましたか?

解決 2

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

他のヒント

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
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top