Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3395884
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:20:31+00:00 2026-05-18T04:20:31+00:00

I have a tableView which lists the contents of the document directory. It contains

  • 0

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.

alt text

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.

alt text

alt text

alt text

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..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T04:20:31+00:00Added an answer on May 18, 2026 at 4:20 am

    I think you can check existance of folder as follows

    NSArray *contentsArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL];
    
    if(contentsArray==nil)
    {
        NSLog(@"This directory doesn't exist");
    }
    else if(contentsArray.count==0)
    {
        NSLog(@"Directory exists but doesn't have any content i.e. files or folders");
    }
    else if(contentsArray.count>0)
    {
       for (NSString *path in contentsArray)
       {
          NSLog(@"Content Path :%@",path);
       }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a tableView which lists the contents of my document directory. I have
I am having a tableView which lists the contents directory which includes jpg, pdf,
I am having a tableView which lists the contents directory which includes jpg, pdf,
I have a UITableView which lists the contents of my document directory. I have
I am creating a TableView which contains 20 rows.I have to add single labels
I have an app which contains a scrollview with several tableviews. Each tableview is
I have a tableView which has cells with phone numbers. The app is not
I have a dynamic tableview which has a prototype cell with a button that,
I have a tableview, which has many sections. each section has just one cell.
I am developing and tableView in which in each row I have to display

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.