2017-01-20 328 views
0

堅持文件我已經得到了來自在我應用嵌入式一個文件(例如「file.ieee」)(在構建時包含在資產)。斯威夫特

該應用程序將從Web服務中獲取新版本並將其存儲在臨時目錄中(請參閱下面的代碼)。

如何替換(並堅持)新版本?

// Construct the NSURL for the download location. 
    let downloadingFilePath = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("downloaded-file.ieee") 

我基本上要downloaded-file.ieee的內容在 「file.ieee」 複製。

+0

只是構建使用文件夾中的下載位置,那不是暫時的。順便說一句,你應該閱讀這個https://developer.apple.com/library/content/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html –

回答