Should be fairly simple.... I basically want to find a specific folder on multiple machines.
Here's what I have so far:
Dim UserName As String = Environment.UserName
System.Diagnostics.Process.Start("C:\Documents and Settings\" & UserName & "\Local Settings\Temporary Internet Files\OLK###")
The OLK### folder is different on every machine. OLK stays consistant, with the numbers varying.
How can I open this folder using wildcards or something similar?
Thanks!
Here's what I have so far:
Dim UserName As String = Environment.UserName
System.Diagnostics.Process.Start("C:\Documents and Settings\" & UserName & "\Local Settings\Temporary Internet Files\OLK###")
The OLK### folder is different on every machine. OLK stays consistant, with the numbers varying.
How can I open this folder using wildcards or something similar?
Thanks!