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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:58:54+00:00 2026-06-05T15:58:54+00:00

I have a method that uses ARC and takes an NSError pointer and I

  • 0

I have a method that uses ARC and takes an NSError pointer and I pass that into the contentsOfDirectoryAtPath:error: method of NSFileManager like so:

+ (NSArray *) getContentsOfCurrentDirectoryWithError: (NSError **)error
{
    // code here

    _contentsOfCurrentDirectory = [_fileManager contentsOfDirectoryAtPath: _documentDirectory error: error];

    // more code here
}

I’m not sure if this code is correct, because I’m not very used to pointers due to being spoiled by managed languages. However, my initial reaction was to do this:

_contentsOfCurrentDirectory = [_fileManager contentsOfDirectoryAtPath: _documentDirectory error: &error];

Xcode yelled at me for trying it like that, though. My assumption as to how this might work is that the contentsOfDirectoryAtPath:error: method is asking for a pointer and, since I was asking for a pointer in my getContentsOfCurrentDirectoryWithError:error: method, I can just pass error without using the dereference operator.

I just want to make sure I’m doing this right to avoid hassle later, so is there a problem with what I have?

  • 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-06-05T15:58:55+00:00Added an answer on June 5, 2026 at 3:58 pm

    Method can be like this NSError **errorMessage in .h file:

    + (NSArray *) getContentsOfCurrentDirectory
    { 
      NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,    NSUserDomainMask, YES);
      NSString *_documentsDirectory = [paths objectAtIndex:0]; 
      NSArray *_contentsOfCurrentDirectory = [[NSFileManager defaultManger]  contentsOfDirectoryAtPath: _documentDirectory error: errorMessage]; 
      return contentsOfCurrentDirectory ;
    }
    

    Whenever error occurs errorMessage reference will have error message [error description]

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method that uses a list which I need to pass into
I have a method that uses the params keyword, like so: private void ParamsMethod(params
I have a method set up that uses jquery form for a file upload
I have a method I'm writing that uses reflection to list a class's static
I have a function that uses the SharePoint api so the method SPUtility.GetLocalizedString is
I have an application (ASP.NET MVC) that uses a Next New method to get
I have a model that uses a acts_as_nested_set fork, and I've added a method
I have many js methods that uses global variables like: function DoSomething() { var
I have a method that uses setAttribute on the Request object. I need to
I have a normalization method that uses the normal distribution functions pnorm() and qnorm().

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.