-1
我想替換/更新我的應用程序包中的一些文件。我試過這段代碼,但它所做的只是創建一個副本。如果我嘗試替換文件icon.png,該文件將被複製爲icon-copy.png。有沒有一種方法可以實際替換原始文件。刷新應用程序內容動態爲Windows應用程序商店
Windows.Storage.ApplicationData.current.localFolder.getFileAsync("SplashImage.png")
.done(function (sourcefile) {
var root = Windows.ApplicationModel.Package.current.installedLocation.path;
var path = root + "\\images";
var StorageFolder = Windows.Storage.StorageFolder;
var folderPromise = StorageFolder.getFolderFromPathAsync(path);
folderPromise.done(function (folder) {
sourcefile.copyAsync(folder,"SplashImage.png", Windows.Storage.NameCollisionOption.ReplaceExisting).done(function(result){
Windows.System.Launcher.launchFileAsync(result).done(function() {
alert("success");
});
});
});
});