使ってみた
NSString *DocumentsDirectoryPath = //Code to fetch the Documents Directory Path;
NSError *error;
NSFileManager *manager = [NSFileManager defaultManager];
[manager removeItemAtPath:DocumentsDirectoryPath error:&error];
上記のコードはアプリの Documents ディレクトリ全体を削除しますが、Documents ディレクトリ自体ではなくDocuments ディレクトリの内容を削除したいだけです。
私は何をすべきか?