我试图在playground的帮助下阅读data.txt文件。但它正在返回零。
首先,我实例化了NSFileManager
个对象。比使用函数fileExistsAtPath
它返回true。
实例化NSFileHandle
后,它返回nil。
//: Playground - noun: a place where people can play
import UIKit
var defaultManager = NSFileManager.defaultManager()
if defaultManager.fileExistsAtPath("/Users/toshishakhand/Documents/data.txt") {
print("File exists") // output : File Exists
} else {
print("File not found")
}
var fileHandler: NSFileHandle ? = NSFileHandle(forReadingAtPath: "/Users/toshishakhand/Documents/data.txt")
if fileHandler == nil {
print("File open failed") //output : nil
} else {
print("File does not exist")
}