2015-09-02 78 views
0

我目前正在開發一個windows應用程序項目。我在bin/debug中有一個名爲「documents」的文件夾,其中包含子文件夾,而子文件夾包含word文檔文件。 當我點擊並拖動「文件」文件夾時,我得到一個完整的C:\ Users \ Satellite \ Documents \ Visual Studio 2010 \ Projects \ WindowsExplorer_VB \ WindowsExplorer_VB \ bin \ Debug \文檔。我想,就是以斌/調試文件夾的位置,使應用程序可以從目錄中不同的機器.. 任何幫助安裝時讀...在VB中獲取bin/debug文件夾的相對目錄

+1

在部署時不會是另一臺機器上的bin \ debug'文件夾...這些是VS開發文件夾 – Plutonix

+0

[我如何獲得代碼所在的程序集路徑?](http:// stackoverflow .com/questions/52797/how-do-i-get-the-path-of-the-assembly-the-code-in-in) –

+0

然後我該如何返回文件夾的路徑? – user46527

回答

0

試試這個:

Dim docPath As String = Path.Combine(My.Application.Info.DirectoryPath, "documents") 
+0

這個工作適合你嗎? – JerryM

相關問題