我目前正在寻找一种方法来打开位于userprofile文件夹中的外部应用程序。这是我目前的代码:
Dim p As New ProcessStartInfo
'program function'
p.FileName = "%userprofile%/folder/app.exe"
Process.Start(p)
到目前为止,我没有运气。如果有人知道如何做到这一点会很好
答案 0 :(得分:0)
尝试
p.FileName = Environment.ExpandEnvironmentVariables("%userprofile%/folder/app.exe")