iOS case: Read the list of files in the specified directory

Source: Internet
Author: User

////main.m//read the list of files in the specified directory////Created by Apple on 15/11/24.//copyright©2015 year Apple. All rights reserved.///** Read the list of files in the specified directory*/#import<Foundation/Foundation.h>voidMyquickmethod ();intMainintargcConst Char*argv[]) {    //File Manipulation ObjectsNsfilemanager *manager =[Nsfilemanager Defaultmanager]; //Folder pathNSString *home = [@"~"Stringbyexpandingtildeinpath];//root directory folder//Directory iteratorsNsdirectoryenumerator *direnum =[manager Enumeratoratpath:home]; //create a new array that holds individual file pathsNsmutablearray *files = [Nsmutablearray arraywithcapacity: the]; //Traverse directory iterators to get individual file pathsNSString *filename;  while(filename =[Direnum Nextobject]) {        if([[FileName pathextension] Isequalto:@"jpg"]) {//filter out files with file suffix named jpg[Files Addobject:filename]; }} NSLog (@"%lu", [Files Count]); //iterating through an array, outputting a listNsenumerator *enume =[Files Objectenumerator];  while(filename =[Enume Nextobject]) {NSLog (@"%@", filename); }    //Myquickmethod ();    return 0;}//use Quick enumeration to implementvoidMyquickmethod () {//File Manipulation ObjectsNsfilemanager *manager =[Nsfilemanager Defaultmanager]; //The path to the folder you are looking forNSString *home = [@"~"Stringbyexpandingtildeinpath]; //Directory iteratorsNsdirectoryenumerator *direnum =[manager Enumeratoratpath:home]; //Quick EnumerationNsmutablearray *files = [Nsmutablearray arraywithcapacity: the];  for(NSString *filenameinchdirenum) {        if([[FileName pathextension] Isequalto:@"jpg"]) {[Files addobject:filename]; }} NSLog (@"%lu", [Files Count]); //Fast enumeration, output results     for(NSString *filenameinchfiles) {NSLog (@"%@", filename); }}

iOS case: Read the list of files in the specified directory

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.