直接打開指定的目錄

    string dir = path;
    dir = dir.Replace(@"/", @"\");
    System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe");
    psi.Arguments = "/e,/select," + dir;
    System.Diagnostics.Process.Start(psi);
相關文章
相關標籤/搜索