最新下载
热门教程
- 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;
}
相关文章
- 龙腾世纪4影障守护者压制敌人方法分享 11-02
- 使命召唤黑色行动6添加好友方法分享 11-02
- 使命召唤黑色行动6快速升级方法分享 11-02
- 暗喻幻想王家魔力面具用法特点介绍 11-02
- 暗喻幻想圣职者救世主面具用法特点介绍 11-02
- 成长的句子经典语录100句 11-02