I copied over some code from a test app:
const string sdfPath = @"C:\WebAPIClient\WebAPIClient\bin\Debug\DBPlatypusCompactDB.sdf";
string dataSource = string.Format("Data Source={0}", sdfPath);
int countAdded = 0;
if (!File.Exists(sdfPath))
. . .
...which works fine there; but on trying to convert it for use in the project that will run on the Windows CE device:
const string sdfPath = @"Computer\WindowsCE\\\Program Files\hhs\DBPlatypusCompactDB.sdf";
. . .
...(this is the path I copied from Windows Explorer (the folder to which the exe is deployed, which has no subfolders)), I get "path not found" or "path not valid" or something similar.
How am I to designate the path?