在VB.net中,如何以编程方式启动.exe文件?有没有办法检查文件是否在那里?

我知道有一些方法可以使用System.IO进行检查,但是我不知道。但是,如果该.exe存在,我什至没有丝毫线索,因此,感谢您的帮助!

最佳答案

使用System.IO.File.Exists和System.Diagnostics.Process.Start。


        Dim someExe As String = "MyAppsPath\some.exe"
        Dim fullPath As String = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), someExe)
        If File.Exists(fullPath) Then    'Checks for the existence of the file
            Process.Start(fullPath)      'Executes it
        End If

关于.net - 管理.exe文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1390070/

10-17 02:10