我正在尝试保存一个 XAP 文件,女巫基本上就像一个 zip 文件,我可以存档并保存它,但它会添加到许多文件夹中?
我正在使用 Ionic.Zip DLL 来存档我的 XAP 文件。
该文件保存到我的路径,但是当我打开它时,它有文件夹 users,然后在那里有文件夹 Shaun,在那个文件夹中有一个文件夹 Documents,在 FormValue 文件夹中,然后在里面有我的 3 个文件我拉了拉链。
我只需要 Xap 文件来包含我压缩的 3 个文件,而不是里面的所有额外文件夹。
using (ZipFile zip = new ZipFile())
{
// add this map to zip
zip.AddFile("C://Users//Shaun//Documents//FormValue//" + property_details_locality_map);
zip.AddFile("C://Users//Shaun//Documents//FormValue//data.xml");
zip.AddFile("C://Users//Shaun//Documents//FormValue//dvform.dvform");
zip.Save("C://Users//Shaun//Documents//FormValue//NewValuation.xap");
}