我想保存一個XAP文件女巫基本上就像一個zip文件,我可以存檔並保存它,但它會添加到許多文件夾?存檔壓縮文件並將其保存到選定位置,不需要額外的文件路徑?
我正在使用Ionic.Zip DLL來歸檔我的XAP文件。
該文件保存到我的路徑,但是當我打開它有文件夾的用戶,然後在那裏它有文件夾肖恩,並在該文件夾中的文件夾,在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");
}
同樣的問題http://stackoverflow.com/questions/6202267/how-to-zip-only-files-and-not-the-full-path-hierarchy-with-dotnetzip-in-powershe – Loci