ios - Delete a folder and its subfolders in Objective-C / C -


How can I delete a folder and its subfolders in Objective-C / C on iOS?

You can use NSFileManager :

  BOOL success = [[NSFileManager defaultManager] RemoveItemAtPath: pathToFolder error: zero];    

Comments

Popular posts from this blog

php - Creating canonical URLs with custom route-classes -

Mysql Local server hardware -

mysql - Formatting problem with PHP DateTime Difference when used as part of an equation -