How do I delete a file in my apps documents directory?

iphone, xcode

Solution

NSFileManager is a very handy tool:

[[NSFileManager defaultManager] removeItemAtPath: pathToFile error: &error];

Problem

Given, a file of path `[[self documentsDirectory] stringByAppendingPathComponent:@"myFiles/aFile.txt"]`, How do I delete a file in my apps documents directory?

Original source