iPhone开发 判断文件是否存在
来源:未知 责任编辑:智问网络 发表时间:2013-09-03 12:18 点击:次
//判断文件是否存在
if(![c judgeFileExist:@"user.plist"])
{
NSLog(@"请确认该文件是否存在!");
return;
}
//判断文件是否存在
-(BOOL)judgeFileExist:(NSString * )fileName
{
//获取文件路径
NSString *path = [[NSBundle mainBundle] pathForResource:fileName ofType:@""];
if(path==NULL)
return NO;
returnYES;
}
摘自 凡娃软件
相关新闻>>
- 发表评论
-
- 最新评论 更多>>