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