我在\bin\debug 中有Access Database ..我正在创建一个实用程序来备份。所以我需要获取数据库的路径..之后我将该文件从该位置复制到其他位置..所以请帮忙我得到路径。
问问题
8305 次
4 回答
3
您必须在您的数据库属性中设置以在每次构建时替换 .. 这样您将获得数据库的新副本,同时在您的 bin 目录中使用您的项目的每个构建/部署
My.Application.Info.DirectoryPath
于 2014-04-28T07:07:37.703 回答
2
My.Application.Info.DirectoryPath
为您提供启动 exe 所在的目录
于 2013-09-02T08:46:02.800 回答
1
AppDomain.CurrentDomain.BaseDirectory
为您提供应用程序已启动的目录的名称。
代码:
Dim databasePath As String = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "creation.mdb")
于 2013-09-02T08:44:50.557 回答
0
path = Application.StartupPath & "\creation.mdb"
If My.Computer.FileSystem.FileExists(path)
Then
MessageBox.Show("File is available")
Else
MessageBox.Show("File is Not available")
End If
我试过了,它有效。
于 2014-08-28T09:02:57.647 回答