Use nsfilemanager to obtain the file (folder) List

Source: Internet
Author: User

From: http://kevin-wu.net /? P = 148

Developing iPhoneProgramSometimes you need to perform operations on the file. Obtaining the list of all files in a directory is one of the basic operations. Use the following sectionCodeTo obtain the list of files and folders in a directory.

 
Nsfilemanager * filemanager = [nsfilemanager defaultmanager]; // obtain the nsarray * documentpaths = nssearchpathfordirectoriesindomains (nsdocumentdirectory, nsuserdomainmask, yes) in the documents folder of the application ); nsstring * documentdir = [documentpaths objectatindex: 0]; nserror * error = nil; nsarray * filelist = [[nsarray alloc] init]; // filelist is the array filelist = [filemanager contentsofdirectoryatpath: documentdir error: & error] that contains the file names and folder names of all files in the folder.

The following code lists the names of all subfolders in a given folder.

 nsmutablearray * dirarray = [[nsmutablearray alloc] init]; bool isdir = no; // list the folder name for (nsstring * file in filelist) {nsstring * Path = [documentdir stringbyappendingpathcomponent: file]; [filemanager fileexistsatpath: path isdirectory :( & isdir)]; If (isdir) {[dirarray addobject: file];} isdir = no;} nslog (@ "every thing in the Dir: % @", filelist); nslog (@ "All Folders: % @", dirarray); 

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.