你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iphone檢測文件更新的方法

iphone檢測文件更新的方法

編輯:IOS開發綜合
原問題描述: 開發了一個IOS應用,在文檔目錄中有一些文件,需要檢測這些文件是否被編輯或者更改過。不知道應該怎麼實現?還有如果獲取最後一次修改的時間?   解決方案: 下面的代碼可以得到文件修改時間: [plain]  www.2cto.com NSFileManager* fileManager = [NSFileManager defaultManager];   NSDictionary* attributes = [fileManager attributesOfItemAtPath:path error:nil];      if (attributes != nil) {       NSDate *date = (NSDate*)[attributes objectForKey:NSFileModificationDate];       NSLog(@"Last modification date: %@", [date description]);   } else {       NSLog(@"Not found");   }       點擊這裡,是attributesOfItemAtPath:error:`函數的說明。 點擊這裡,是文件屬性的說明列表
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved