0

我对如何做到这一点有点困惑。我想要做的是当我单击时Button1,我的程序将在资源管理器中打开一个文件夹,第二个按钮将打开一个文件作为文本文件。

这是我的代码:

按钮 1

   Process.Start("explorer.exe", Application.ExecutablePath + "\mvram.biz")

按钮 2

   Process.Start("Notepad.Exe", "README.txt")

我的问题是每次单击按钮时都会打开“我的文档”。它必须打开 APPpath+特定文件夹。

编辑:

Public Class Form1



Private Sub ExcisionButtonDefault5_Click(ByVal sender As System.Object, ByVal e As  System.EventArgs) Handles ExcisionButtonDefault5.Click
    Me.Close()
End Sub

Private Sub ExcisionButtonDefault1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExcisionButtonDefault1.Click
    Dim path As String = System.IO.Path.GetDirectoryName(Application.ExecutablePath) & "\mvram.biz\"
    Process.Start("explorer.exe", path)
End Sub

Private Sub ExcisionButtonDefault2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExcisionButtonDefault2.Click
    Process.Start("explorer.exe", Application.StartupPath & "\Documents")
End Sub

Private Sub ExcisionButtonDefault3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExcisionButtonDefault3.Click
    Process.Start("Notepad.Exe", "/select," & "README.txt")
End Sub

Private Sub ExcisionButtonDefault4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExcisionButtonDefault4.Click
    Process.Start("explorer.exe", System.Windows.Forms.Application.StartupPath + "\Presentation")
End Sub

Private Sub ExcisionButtonDefault6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExcisionButtonDefault6.Click
    System.Diagnostics.Process.Start("http://www.mvram.biz")
End Sub
End Class
4

2 回答 2

0

它打开随机位置的原因是因为您打算执行错误的路径(整个应用程序路径+其他应用程序)。您必须选择目录。试试这个代码:

Dim path As String = System.IO.Path.GetDirectoryName(Application.ExecutablePath) & "\mvram.biz"
Process.Start("explorer.exe", path)

其他选项:

Dim path As String = Environment.CurrentDirectory & "\mvram.biz"

我个人更喜欢使用绝对路径而不是相对路径(引用同一目录时只是文件名)。

于 2013-10-10T18:47:49.587 回答
0

要在 FileExplorer 中打开特定文件夹,您可以尝试传递此参数:

Dim x as string = "FolderPath"
Process.Start("explorer.exe", "/root,x")

或者您可以传递参数"/select,x",这将打开文件资源管理器并选择文件夹,但未打开。这篇文章可能会有所帮助。或者您可以像上面尝试的那样只拥有文件地址,它将打开到正确的位置。

然后打开一个txt文件,你需要做的就是:

Process.Start("FileAddress")

这将在其默认编辑器中打开文件。

高温高压

于 2013-10-10T18:46:06.213 回答