Ah, that seems to work!So surround the paths with either ' or " ?
I have never ever put a , in a pathbut can see it can be done, so you will need to do the above I believe, and amend Allen's code to do that.
amended his code:
Code:
If lst Is Nothing Then
For Each varItem In colDirList
Debug.Print varItem
Next
Else
For Each varItem In colDirList
lst.AddItem "'" & varItem & "'"
Next
End If