Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我的应用程序在安装目录中有一个数据库,但我想将它移动到用户本地应用程序数据文件夹中。我怎样才能做到这一点?你能做这个吗?
好吧,你可以这样做:
File.Move(pathToDatabase, Path.Combine(Environment.GetFolderPath(SpecialFolder.LocalApplicationData), "databaseName.mdf"));
但是您还需要记住更改应用程序的连接字符串(无论您将其存储在何处)。
你最好提到你使用哪种数据库技术,但你可以简单地使用 File.Move 的几率很高。当然不要忘记为新位置安排连接字符串。