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 6575245
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:21:46+00:00 2026-05-25T15:21:46+00:00

I wonder if developer has some sort of ways to be able to view

  • 0

I wonder if developer has some sort of ways to be able to view file system on iOS device like iFile but without jailbreak the device?
Need it for devlopement purpose.

EDIT
Thanks for your answers! I know there is a place inside app folder and can be read and write to.
But I was looking for a way to view the data quickly without coding, like iFile. So I can check if my write functions suceed or not.

  • 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-25T15:21:47+00:00Added an answer on May 25, 2026 at 3:21 pm

    One can view files in an iOS device but only in that your App’s sandbox. Every App has got a Documents, Cache and temp folders. I think the first two are automatically backed up by iTunes when you connect your device, the latter is not backed up.

    Example, to get Cache directory path –

    - (NSString *)getCacheDirPath
    {
        NSString *path = nil;
        NSArray *myPathList = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
        if([myPathList count])
        {
            NSString *bundleName = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"];
            path = [[myPathList objectAtIndex:0] stringByAppendingPathComponent:bundleName];
        }
        return path;
    }
    

    To see all files in caches directory –

    - (NSMutableArray *)showFiles
    {
        NSError *err        = nil;
        NSArray *myPathList = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
        NSString *myPath    = [myPathList  objectAtIndex:0];
        NSArray *dirContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:myPath error:&err];
        if(err) NSLog(@"showFiles() - ERROR: %@",[err localizedDescription]);
        NSMutableArray *filePaths  = nil;
    
        int count = (int)[dirContent count];
        for(int i=0; i<count; i++)
        {
            [filePaths addObject:[dirContent objectAtIndex:i]];
        }
        return filePaths;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

as a skilled AS3 developer I wonder if there is something like AS3 to
Some people say that every programming language has its complexity budget which it can
I know, this has been asked a few times, but mostly for Xcode 3.x.
I am a dot net developer but yesterday I was asked to develop a
I did do some googling and searching on this site but did not find
After reading this post and some derivative publications (ddotdash.com) I wonder whether it is
For some time I've noticed how much the File Open and File save dialogs
I wonder has anyone come across with this issue where the MSTest Unit Test
I wonder how to synchronize two folders including subfolders using MSBuild. What I like
I am using this API demo of the Developer site, THIS DEMO. But i

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.