国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > 建站經(jīng)驗 > 正文

IOS檢測指定路徑的,文件是否存在

2019-11-02 14:40:37
字體:
供稿:網(wǎng)友

   本文給大家分享的是在IOS開發(fā)中檢測指定文件是否存在的方法,給大家匯總了4種,十分實用,小伙伴們根據(jù)自己的需求自由選擇吧。

  代碼如下:

  - (NSString *)dataPath:(NSString *)file

  {

  NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"badge"];

  BOOL bo = [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];

  NSAssert(bo,@"創(chuàng)建目錄失敗");

  NSString *result = [path stringByAppendingPathComponent:file];

  return result;

  }

  - (void)viewDidLoad

  {

  [super viewDidLoad];

  //此處首先指定了圖片存取路徑(默認寫到應用程序沙盒 中)

  NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);

  //并給文件起個文件名

  NSString *imageDir = [[[paths objectAtIndex:0] stringByAppendingPathComponent:@"163"] stringByAppendingPathComponent:@"songzi"];

  //存放圖片的文件夾

  NSString *imagePath =[imageDir stringByAppendingPathComponent:@"文件名.png"];

  NSData *data = nil;

  //檢查圖片是否已經(jīng)保存到本地

  if([self isExistsFile:imagePath]){

  data=[NSData dataWithContentsOfFile:imagePath];

  }else{

  data = [NSData dataWithContentsOfURL:[NSURL URLWithString: @"網(wǎng)址"]];

  //創(chuàng)建文件夾路徑

  [[NSFileManager defaultManager] createDirectoryAtPath:imageDir withIntermediateDirectories:YES attributes:nil error:nil];

  //創(chuàng)建圖片

  [UIImagePNGRepresentation([UIImage imageWithData:data]) writeToFile:imagePath atomically:YES];

  }

  imageView.image = [UIImage imageWithData:data];

  }

  檢查文件是否存在

  代碼如下:

  NSString *path = [[NSBundle mainBundle] pathForResource:fileName ofType:@""];

  if(path==NULL)

  方法二:

  代碼如下:

  NSFileManager *fileManager = [NSFileManager defaultManager];

  //Get docum

網(wǎng)名大全[www.la240.com/html2017/1/]
ents directory

  NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains

  (NSDocumentDirectory, NSUserDomainMask, YES);

  NSString *documentsDirectoryPath = [directoryPaths objectAtIndex:0];

  if ([fileManager fileExistsAtPath:@""]==YES) {

  NSLog(@"File exists");

  }

  方法三:

  代碼如下:

  //判斷文件是否存在

  if(![c judgeFileExist:@"user.plist"])

  {

  NSLog(@"請確認該文件是否存在!");

  return;

  }

  方法四:

  代碼如下:

  //判斷文件是否存在

  -(BOOL)judgeFileExist:(NSString * )fileName

  {

  //獲取文件路徑

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 扎鲁特旗| 信丰县| 上犹县| 启东市| 洛浦县| 甘肃省| 洪湖市| 中宁县| 福建省| 肃北| 富蕴县| 抚松县| 蛟河市| 林西县| 航空| 荔波县| 舞阳县| 肃宁县| 蒲城县| 马尔康县| 达孜县| 通化市| 新余市| 大余县| 彝良县| 敦煌市| 本溪| 柯坪县| 清涧县| 德庆县| 清镇市| 陆河县| 绍兴县| 靖安县| 务川| 延吉市| 攀枝花市| 科尔| 曲阳县| 榆树市| 龙岩市|