The original source is unknown, the original author can see, please contact me add Source Address link:)
The iphone sandbox model has four folders, what is the location of the permanent data store, and what is the simple way to get the path to the emulator.
Documents,tmp,app,library.
(Nshomedirectory ()),
The manually saved files are in the documents file.
Nsuserdefaults saved files in the TMP folder
1. Documents directory: You should write all the de application data files to this directory. This directory is used to store user data or other information that should be backed up regularly.
2. Appname.app directory: This is the application's package directory, which contains the application itself. Because the application must be signed, you cannot modify the contents of this directory at run time, which may cause the application to fail to start.
3. Library directory: There are two sub-directories under this directory: Caches and Preferences
Preferences directory: Contains the application's preferences file. Instead of creating a preference file directly, you should use the Nsuserdefaults class to get and set your application's preferences.
Caches directory: Used to hold application-specific support files, saving the information that is needed during application startup.
4. tmp directory: This directory is used to store temporary files, saving information that is not needed during the application restart.
Ways to get these directory paths:
1, get the Home directory path function:
NSString *homedir = Nshomedirectory ();
2. Method for obtaining the Documents directory path:
Nsarray *paths = Nssearchpathfordirectoriesindomains (NSDocumentDirectory, Nsuserdomainmask, YES);
NSString *docdir = [Paths objectatindex:0];
3, get the Caches directory path method:
Nsarray *paths = Nssearchpathfordirectoriesindomains (Nscachesdirectory, Nsuserdomainmask, YES);
NSString *cachesdir = [Paths objectatindex:0];
4. Method to get the TMP directory path:
NSString *tmpdir = Nstemporarydirectory ();
5, gets the method of the resource file path in the application package:
For example, get a picture resource (apple.png) path in the package by:
NSString *imagepath = [[NSBundle mainbundle] pathforresource:@ "apple" oftype:@ "PNG"];
UIImage *appleimage = [[UIImage alloc] initwithcontentsoffile:imagepath];
The Mainbundle class method in the code is used to return an object that represents the application package.
several ways to get the contents of the iphone Sandbox (sandbox):
1 //Get the Sandbox home directory path2NSString *homedir =nshomedirectory (); 3 //get the Documents directory path4Nsarray *paths =nssearchpathfordirectoriesindomains (NSDocumentDirectory, Nsuserdomainmask, YES); 5NSString *docdir = [Paths Objectatindex:0]; 6 //Get caches directory path7Nsarray *paths =nssearchpathfordirectoriesindomains (Nscachesdirectory, Nsuserdomainmask, YES); 8NSString *cachesdir = [Paths Objectatindex:0]; 9 //get the TMP directory pathTenNSString *tmpdir = Nstemporarydirectory ();
1 // Gets a picture resource (apple.png) path in the current package 2 nsstring *imagepath = [[NSBundle mainbundle] Pathforresource:@ "Apple" ofType: @" PNG " ]; 3 UIImage *appleimage = [[UIImage alloc] initwithcontentsoffile:imagepath];
Example:
1nsfilemanager* fm=[Nsfilemanager Defaultmanager];2 if(![FM fileexistsatpath:[self DataFilePath]]) {3 4 //The following is a save on the path to the file development5 [FM createdirectoryatpath:[self DataFilePath] Withintermediatedirectories:yes attributes:nil Error:nil];6 7 //get all the filenames in a directory8Nsarray *files =[FM subpathsatpath: [self datafilepath]];9 Ten //read a file OneNSData *data =[FM contentsatpath:[self DataFilePath]; A - //or -NSData *data =[NSData datawithcontentofpath:[self DataFilePath]; the}
Go Ways to get directory paths for various files in iOS