0
Do not put assume that you will always have D drive. So you need to put MS access file in your current directory where exe file is going to install. Make access file as Embedded resource when you build exe file.
Next you to get path using following code:
string filePath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
"TempDB.mdb");
or
string filePath = Path.GetFullPath("Licence.txt");