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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:43:21+00:00 2026-05-27T02:43:21+00:00

I want to write some values to an external file and use NSDictionary for

  • 0

I want to write some values to an external file and use NSDictionary for this purpose:

NSString *s = @"123456";
NSString *key = @"key";
NSString *file = pathInAppDirectory(@"values");
NSDictionary *dic = [NSDictionary dictionaryWithObject:s forKey:key];
[dic writeToFile:file atomically:YES];

Ok, pathInAppDirectory looks like this:

NSString *pathInAppDirectory(NSString *fileName)
{
    NSArray *documentDirectories = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES); 

    NSString *appDir = [documentDirectories objectAtIndex:0];
    return [appDir stringByAppendingPathComponent:fileName];
}

What happens is exactly nothing: If I want to have look in the file somewhat later and want to display the values, null is returned. And a look into the folder of the iPhone simulator shows an empty folder, too. What happens there or, to be more specific: what does not happen?

  • 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-27T02:43:21+00:00Added an answer on May 27, 2026 at 2:43 am

    You need to use NSDocumentDirectory instead of NSApplicationDirectory. It is not possible to write in the Application bundle.

    Cleaned up example:

    - (NSString *)pathInAppDirectory:(NSString *)fileName {
        NSArray *documentDirectories = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
    
        NSString *appDir = [documentDirectories objectAtIndex:0];
        return [appDir stringByAppendingPathComponent:fileName];
    }
    
        NSString *s = @"123456";
        NSString *key = @"key";
        NSDictionary *dic = [NSDictionary dictionaryWithObject:s forKey:key];
        NSString *filePath = [self pathInAppDirectory:@"values"];
        [dic writeToFile:filePath atomically:YES];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write some values from editText of activity in the file string.xml.
I have some values that I want to write in a text file with
I want to write some text directly to a file using Flex 3 /
I want to write some bogus text in a file (helloworld text in a
I want to use Powershell to write some utilities, leveraging our own .NET components
i want to open a file, write some data on it so i have
I want to populate some values in a sheet and then use jxl Formula
I want to write some large amount of data to a file. the data
I want to write some JavaScript that will change the onmousedown of a div
I want to write some javascript and have it call into the DOM for

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.