一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

详解IOS中文件路径判断是文件还是文件夹

时间:2017-09-27 编辑:猪哥 来源:一聚教程网

详解IOS中文件路径判断是文件还是文件夹

方法1

+ (BOOL)isDirectory:(NSString *)filePath 
{ 
  BOOL isDirectory = NO; 
  [[NSFileManager defaultManager] fileExistsAtPath:filePath isDirectory:&isDirectory]; 
  return isDirectory; 
} 

方法2

+ (BOOL)isDirectory:(NSString *)filePath 
{ 
  NSNumber *isDirectory; 
  NSURL *fileUrl = [NSURL fileURLWithPath:filePath]; 
  [fileUrl getResourceValue:&isDirectory forKey:NSURLIsDirectoryKey error:nil]; 
  return isDirectory.boolValue; 
} 

热门栏目