最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
详解IOS中文件路径判断是文件还是文件夹
时间:2022-06-26 05:58:16 编辑:袖梨 来源:一聚教程网
详解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;
}