iPhone - 检查文件夹的状况
我有一个 tableView,其中列出了文档目录的内容。它包含文件(jpg、png、mp4、pdf、sql、mp3...)和文件夹(它们甚至还有子文件夹)。 这是我的屏幕截图。
其中列表中的“SQLTutorial”是一个文件夹。
然后我有一个detailViewController,它在tableView 中选择时打开文件。 这是我的屏幕截图。
问题是我不知道如何检查文件夹的条件并使其列出子文件夹下一个视图。我正在检查如下图片和视频的条件,它有效。
图像的条件
if ([detailedViewController.strType isEqualToString:@"jpg"]) {
}
视频的条件
if ([detailedViewController.strType isEqualToString:@"mp4"]) {
}
pdf 的条件
if ([detailedViewController.strType isEqualToString:@"pdf"]) {
}
我正在检查这样的文件夹的条件
if ([detailedViewController.strType isEqualToString:@""]) {
}
,但它不起作用。
知道如何让它发挥作用吗?提前致谢..
I have a tableView which lists the contents of the document directory. It contains files(jpg, png, mp4, pdf, sql, mp3,...) and folders(they even have subfolders too).
Here is my screen shot.
where "SQLTutorial" in the list is a folder.
Then I have a detailViewController which opens the file when selected in the tableView.
Here is my screen shot.
The problem is I have no idea how to check the condition for a folder and make it list the subfolders in the next view. I am checking the conditions for pictures and videos like the following and it works.
Condition for a image
if ([detailedViewController.strType isEqualToString:@"jpg"]) {
}
Condition for a video
if ([detailedViewController.strType isEqualToString:@"mp4"]) {
}
Condition for a pdf
if ([detailedViewController.strType isEqualToString:@"pdf"]) {
}
I am checking the condition for a folder like this
if ([detailedViewController.strType isEqualToString:@""]) {
}
But it does'nt works.
Any idea how to make it work? Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以按如下方式检查文件夹是否存在
I think you can check existance of folder as follows