我从测试应用程序中复制了一些代码:
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))
. . .
...在那里工作得很好;但在尝试将其转换为在 Windows CE 设备上运行的项目中使用:
const string sdfPath = @"Computer\WindowsCE\\\Program Files\hhs\DBPlatypusCompactDB.sdf";
. . .
...(这是我从 Windows 资源管理器复制的路径(部署 exe 的文件夹,没有子文件夹)),我得到“找不到路径”或“路径无效”或类似的东西。
我如何指定路径?