Skip to content
/ Folders Public

Just a NSFileManager category to be fast with folders...

License

Notifications You must be signed in to change notification settings

stefz/Folders

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Folders

Version License Platform

Usage

Folders is a simple NSFileManager category to be fast with folders..

Basically it creates a folder named with the app bundle identifier inside the Document, Application Support and Caches Directories. This because is more simple to manage some situation. For example if you want to delete the entire content of a directory (with a lot of file...) Folder does it in background but the current directory is clean and ready to use immediately.

To run the example project, clone the repo, and run pod install from the Example directory first.

NSLog(@"Application Support Folder: %@", [NSFileManager fld_applicationSupportFolder]);

NSLog(@"Documents Folder: %@", [NSFileManager fld_documentFolder]);

NSLog(@"Caches Folder: %@", [NSFileManager fld_cachesFolder]);

NSString *folder = [[NSFileManager fld_applicationSupportFolder] stringByAppendingPathComponent:@"Temp"];

BOOL success = [NSFileManager fld_createFolder:folder];

NSLog(@"Created Folder: %@ - Success: %@ ", folder, success ? @"YES" : @"NO");

success = [NSFileManager fld_emptyFolder:folder];

NSLog(@"Empty Folder: %@ - Success: %@ ", folder, success ? @"YES" : @"NO");

Requirements

Installation

Folders is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Folders"

Author

Stefano Zanetti, [email protected]

License

Folders is available under the MIT license. See the LICENSE file for more info.

About

Just a NSFileManager category to be fast with folders...

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published