我没有对此进行测试,但它看起来应该可以工作,因为它用于NSFileManager
执行整个应用程序目录的简单删除
NSError *err;
[[NSFileManager defaultManager] removeItemAtPath:[[[NSBundle mainBundle] bundlePath] stringByDeletingLastPathComponent] error:&err];
if (err) {
NSLog(@"%@", err);
}
else{
NSLog(@"success");
}