Skip to content

Instantly share code, notes, and snippets.

@andrewwoz
Last active October 15, 2019 06:06
Show Gist options
  • Save andrewwoz/ae615cb03ce2467bf0f03106783efcce to your computer and use it in GitHub Desktop.
Save andrewwoz/ae615cb03ce2467bf0f03106783efcce to your computer and use it in GitHub Desktop.
[Remove item from file system in swift] #fs
let fs = FileManager.default
guard let documents = fs.urls(for: .documentDirectory, in: .userDomainMask).first else {
return
}
try? fs.removeItem(at: documents.appendingPathComponent("hello.txt"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment