Hello, I'm trying to open a file in a folder on every user's desktop. The folder name is "ABC" and the file I want the open is a PDF document named, "Test".
I have try with this code, but it doesn't work:
Any idea what is wrong... thanks for help
I have try with this code, but it doesn't work:
Code:
Dim path As String = System.IO.Path.Combine(My.Computer.FileSystem.SpecialDirectories.Desktop, "ABC")
Process.Start(path & "Test.pdf")