Skip to content

Instantly share code, notes, and snippets.

@d-date
Created March 4, 2019 08:02
Show Gist options
  • Save d-date/8ab0f62a110620a180a8030caacfaa78 to your computer and use it in GitHub Desktop.
Save d-date/8ab0f62a110620a180a8030caacfaa78 to your computer and use it in GitHub Desktop.
var directory: ObjCBool = false
var exists: Bool = FileManager.default.fileExists(atPath: "…", isDirectory: &directory)
if exists {
if directory.boolValue {
// Exists. Directory.
} else {
// Exists.
}
} else {
// Not Exist
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment