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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:07:46+00:00 2026-05-26T09:07:46+00:00

I have some data in a .txt file that I dragged over to resources

  • 0

I have some data in a .txt file that I dragged over to resources in xcode 4.2. I then use some methods that call upon this file, read it, and display it on the screen to the user. It works. My problem is writing to the end of the same file (aka updating the file based on something the user did) directly on the iphone/ the simulator. It does not write for I feel I am not calling upon the right location and perhaps method. This is my code to write to the end of file, if anyone knows why this is not working it would be tremendous help.

Thank you

-(void)updateFile:(id)sender

{

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
    NSString *documentsDirectory = [paths objectAtIndex:0];



    //append filename to docs directory
    NSString *myPath =  [documentsDirectory stringByAppendingPathComponent:@"Mom.txt"];


    fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:myPath];

    dateCombinedString= [dateCombinedString lowercaseString];
    writtenString= [[NSString alloc]initWithFormat:@", %@, %@, %@",dateString,trimmedString,ForDisplay];


    [fileHandle seekToEndOfFile];
    [fileHandle writeData:[writtenString    dataUsingEncoding:NSUTF8StringEncoding]];

      [writtenString release]

         }
  • 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-26T09:07:47+00:00Added an answer on May 26, 2026 at 9:07 am

    The file you dragged to Xcode is inside your app resources. You can get the path to resource with this line of code:

    NSURL* fileUrl = [[NSBundle mainBundle] URLForResource:@"Mom" withExtension:@"txt"];
    

    However, you cannot modify the files in the resource directory therefore you should first copy that file to your document directory, then modify it with the code in the question.

    Here is how you can copy file from resources if the file does not exist on the documents folder:

    NSFileManager* fm;
    
    fm = [NSFileManager defaultManager];
    //only copy it from resources if it does not exits
    if(![fm fileExistsAtPath:myPath]){
      NSURL* myUrl = [NSURL fileURLWithPath:myPath];;
      NSError* error = nil;
      [fm copyItemAtURL:fileUrl toURL:myUrl error:&error];
      //handle the error appropriately
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to javascript and have some data stored in a txt file
I have an application that downloads a .txt file via FTP, and then it
I have a file results.txt which is like: a.txt {some data} success!! b.txt {some
hi I have a program that log some data in text file in specific
I have some data provided from a file.txt wich are display like this :
I have a .txt file that has a bunch of formatted data in it
I have a php file that receives data from a form and then writes
I have some data that won't printf.... echo works, but not printf There is
I have some data that I would like to visualize. Each byte of the
I have some data in a database that I need represented in an XML

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.