サイトマップ 連絡先 最初に戻る 戻る 次へ進む
$Date: 2018-07-07 06:49:13 +0900 (2018/07/07 (土)) $
$Revision: 1347 $

swift 3 でのファイル操作

ファイル削除

let filemgr = FileManager.default
do {
    try filemgr.removeItem(atPath: path)
    print("Removal successful")
} catch let error {
    print("Error: \(error.localizedDescription)")
}
Working with Files in Swift on iOS 10