当前位置:编程学习 > wap >>

iPhone开发 判断文件是否存在

//判断文件是否存在

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

    {

        NSLog(@"请确认该文件是否存在!");

        return;

    }

 

 

 

//判断文件是否存在

-(BOOL)judgeFileExist:(NSString * )fileName

{

    //获取文件路径

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

    if(path==NULL)

        return NO;

    returnYES;

}

 

摘自 凡娃软件
补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,