0

我目前正在寻找一种方法来打开位于 userprofile 文件夹中的外部应用程序。这是我目前的代码:

    Dim p As New ProcessStartInfo

    'program function'
    p.FileName = "%userprofile%/folder/app.exe"
    Process.Start(p)

到目前为止我没有运气。如果有人知道如何做到这一点,那就太好了

4

1 回答 1

0

尝试

p.FileName = Environment.ExpandEnvironmentVariables("%userprofile%/folder/app.exe")
于 2012-12-07T18:58:27.220 回答