如何在特殊目录中打开外部应用程序

时间:2012-12-07 18:17:40

标签: vb.net

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

    Dim p As New ProcessStartInfo

    'program function'
    p.FileName = "%userprofile%/folder/app.exe"
    Process.Start(p)
到目前为止,我没有运气。如果有人知道如何做到这一点会很好

1 个答案:

答案 0 :(得分:0)

尝试

p.FileName = Environment.ExpandEnvironmentVariables("%userprofile%/folder/app.exe")