ios檔案處理(一)

來源:互聯網
上載者:User

一.在Documents、tmp和Library中隱藏檔

 Documents:用於儲存應用程式中經常需要讀取或寫入的常規檔案。

 tmp:用於儲存應用程式運行時產生的檔案。(隨著應用程式的關閉失去了利用價值)

 Library:一般存放應用程式的設定檔,比如說plist類型的檔案。

 

二.讀取和寫入檔案

   1.建立Empty Application應用程式,添加HomeViewController檔案

 HomeViewController.h代碼:

 #import <UIKit/UIKit.h>

@interface HomeViewController : UIViewController{    }- (NSString *) documentsPath;//負責擷取Documents檔案夾的位置- (NSString *) readFromFile:(NSString *)filepath; //讀取檔案內容- (void) writeToFile:(NSString *)text withFileName:(NSString *)filePath;//將內容寫到指定的檔案@end

 HomeViewController.m代碼: 

#import "HomeViewController.h"@interface HomeViewController ()@end@implementation HomeViewController//負責擷取Documents檔案夾的位置- (NSString *) documentsPath{    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);    NSString *documentsdir = [paths objectAtIndex:0];    return documentsdir;}

 

//讀取檔案內容 - (NSString *) readFromFile:(NSString *)filepath{    if ([[NSFileManager defaultManager] fileExistsAtPath:filepath]){        NSArray *content = [[NSArray alloc] initWithContentsOfFile:filepath];         NSString *data = [[NSString alloc] initWithFormat:@"%@", [content objectAtIndex:0]];        [content release];        return data;    } else {        return nil;    }}//將內容寫到指定的檔案 - (void) writeToFile:(NSString *)text withFileName:(NSString *)filePath{    NSMutableArray *array = [[NSMutableArray alloc] init];    [array addObject:text];    [array writeToFile:filePath atomically:YES];    [array release];}

 

-(NSString *)tempPath{    return NSTemporaryDirectory();}- (void)viewDidLoad{    NSString *fileName = [[self documentsPath] stringByAppendingPathComponent:@"content.txt"];        //NSString *fileName = [[self tempPath] stringByAppendingPathComponent:@"content.txt"];        [self writeToFile:@"蘋果的魅力!" withFileName:fileName];        NSString *fileContent = [self readFromFile:fileName];        NSLog(fileContent);        [super viewDidLoad];}@end

 

: 

 

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.