真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vb.net程序所在目錄 vbnet打開指定目錄下的文件

在VB.NET中如何取得當(dāng)前目錄的路徑?

命名空間:System.Windows.Forms

成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供張灣網(wǎng)站建設(shè)、張灣做網(wǎng)站、張灣網(wǎng)站設(shè)計(jì)、張灣網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、張灣企業(yè)網(wǎng)站模板建站服務(wù),10年張灣做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

Application.StartupPath 屬性(返回String)

獲取啟動(dòng)了應(yīng)用程序的可執(zhí)行文件的路徑,不包括可執(zhí)行文件的名稱。

Application.ExecutablePath 屬性(返回String)

獲取啟動(dòng)了應(yīng)用程序的可執(zhí)行文件的路徑,包括可執(zhí)行文件的名稱。

vb.net運(yùn)行所在目錄的應(yīng)用程序并加參數(shù)

可試試下面的方法:

1.可接收參數(shù)的外部程序

/// summary

/// 可接收參數(shù)的外部程序主函數(shù)

/// /summary

static class Program

{

/// summary

/// The main entry point for the application.

/// /summary

[STAThread]

static void Main(string[] paras)

{

string temp = "";

foreach (string str in paras)

{

temp += str + ",";

}

MessageBox.Show(temp);

Application.EnableVisualStyles();

Application.SetCompatibleTextRenderingDefault(false);

Application.Run(new Form1());

}

}

2.啟動(dòng)外部程序的方法(給外部程序加參數(shù))

/// summary

/// 調(diào)用外部程序窗體

/// /summary

public partial class Invokeprogram : Form

{

public Invokeprogram()

{

InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)

{

System.Diagnostics.Process proc = new System.Diagnostics.Process();

proc.StartInfo.CreateNoWindow = true;

proc.StartInfo.UseShellExecute = false;

proc.StartInfo.RedirectStandardOutput = true;

proc.StartInfo.FileName = Application.StartupPath + "\\WindowsFormsApplication1.exe";

proc.StartInfo.Arguments = "-steam -game cstrike"; //傳入啟動(dòng)參數(shù)

proc.Start();

//string output = proc.StandardOutput.ReadToEnd();

// MessageBox.Show(output);

}

}

VB.NET中怎么找到EXE程序所在的路徑

見上圖,用鼠標(biāo)按照上述三個(gè)步驟先后次序,一一單擊進(jìn)行選擇和設(shè)置,“生成輸出路徑”。

那么,在你的程序代碼里使用:

MsgBox(Application.StartupPath)

顯示的就是,你的當(dāng)前默認(rèn)的相對(duì)路徑。

也可以按照自己的需要重新設(shè)置該路徑。


分享題目:vb.net程序所在目錄 vbnet打開指定目錄下的文件
文章位置:http://weahome.cn/article/hjogpp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部