如何确定应用程序包中是否存在文件?
抱歉,今天的第二个问题很愚蠢。是否可以确定应用程序包中是否包含文件?我可以毫无问题地访问文件,即,
NSString *pathAndFileName = [[NSBundle mainBundle] pathForResource:fileName ofType:@"plist"];
但无法弄清楚如何检查文件是否存在。
问候
戴夫
Sorry, dumb question number 2 today. Is it possible to determine if a file is contained within the App Bundle? I can access files no problem, i.e.,
NSString *pathAndFileName = [[NSBundle mainBundle] pathForResource:fileName ofType:@"plist"];
But can't figure out how to check if the file exists there in the first place.
Regards
Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这段代码对我有用...
希望它能帮助某人...
This code worked for me...
Hopefully, it will help somebody...
如果资源不存在,pathForResource 将返回 nil。使用 NSFileManager 再次检查是多余的。
Obj-C:
Swift 5:
pathForResource will return nil if the resource does not exist. Checking again with NSFileManager is redundant.
Obj-C:
Swift 5:
与 @Arkady 相同,但使用 Swift 2.0:
首先,调用
mainBundle()
上的方法来帮助创建资源路径:然后,调用
defaultManager()
上的方法> 检查文件是否存在:Same as @Arkady, but with Swift 2.0:
First, call a method on
mainBundle()
to help create a path to the resource:Then, call a method on
defaultManager()
to check whether the file exists: