swift 判断是否是文件夹(FileManager)
2019-01-24 本文已影响0人
HitlerCoding
extension FileManager {
// 判断是否是文件夹的方法
static func directoryIsExists (path: String) -> Bool {
var directoryExists = ObjCBool.init(false)
let fileExists = FileManager.default.fileExists(atPath: path, isDirectory: &directoryExists)
return fileExists && directoryExists.boolValue
}
}