問題是: 我需要比較FOLDER1
路徑和FOLDER2
VBS中的路徑字符串。需要比較VBS中的文件夾路徑(.regex)
FOLDER1
我從文本文件中讀取,它之前保存過。 FOLDER2
- 從選擇文件夾對話框。 我想阻止用戶選擇FOLDER2
如果:
FOLDER2 = FOLDER1
FOLDER2 = FOLDER1\some_folder
FOLDER2 = Parent_Folder\FOLDER1
例如: Folder1 = c:\users\user\Documents
然後Folder2
不能:c:\users\user\Documents
,c:\users\user\Documents\Letters
或c:\users\user\
不能做出正確的正則表達式來進行比較。現在使用下面的代碼,但需要正常的解決方案。
RightPath = 0
Do
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.BrowseForFolder(0, "Select folder:", &H10&, strPath)
If objFolder Is Nothing Then
msgbox "Configuration canceled" ,64 , "Information"
Wscript.Quit
End If
Set objFolderItem = objFolder.Self
objPath = objFolderItem.Path
' Right now, Check for users folder only
RightPath = RightPath + 1
Dim re, targetString
Set re = New RegExp
With re
.Pattern = "Desktop|Documents|Downloads|Music|Pictures|Videos"
.Global = False
.IgnoreCase = True
End With
targetString = objPath
If re.Test(targetString) Then
msgbox "You cannot choose:" & vbCrLf & vbCrLf & _
"Desktop, Documents, Downloads, Music, Pictures or Videos" & vbCrLf & vbCrLf & _
"Please select another location" ,48 , "Warning!"
RightPath = 0
End If
Loop Until RightPath > 0
msgbox "You selected "+targetString ,0 , "Information,"
Wscript.Quit
是的。謝謝。 InStr的作品。 – MVKozyrev