File search with specific Extension Objective c

后端 未结 6 1486
我在风中等你
我在风中等你 2020-12-11 07:36

I am working on some file manipulation in iPhone project. Where i need to search files of specific extension. One option is to manually process each file & directory to

6条回答
  •  隐瞒了意图╮
    2020-12-11 08:31

    Use below code

    NSArray *myFiles = [myBundle pathsForResourcesOfType:@"Your File extension"
                                        inDirectory:nil];
    

提交回复
热议问题