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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:02:56+00:00 2026-05-25T18:02:56+00:00

Even though I’m using NSAutoreleasePool in a tight loop, the following line in the

  • 0

Even though I’m using NSAutoreleasePool in a tight loop, the following line in the method below is causing me to get memory warnings and ultimately crashing my app (by commenting out that line, the problem goes away). Anyone have an idea why this is the case?

filepath = [docpath stringByAppendingPathComponent:file];

-(void)fileCleanup
{
    NSString *documentspath = [AppSession documentsDirectory];
    NSString *docpath = [documentspath stringByAppendingPathComponent:@"docs"];
    NSFileManager *filemanager = [NSFileManager defaultManager];
    NSArray *files = [filemanager subpathsOfDirectoryAtPath:docpath error:NULL];
    NSLog(@"fileCleanup");
    if(files != nil && [files count] > 0)
    {
        BOOL deletefile;
        NSString *filepath;
        NSAutoreleasePool *readPool;
        NSString *testfile;
        NSString *file;

        for(file in files) 
        {
            deletefile = YES;

            for (testfile in allFiles) {
                readPool = [[NSAutoreleasePool alloc] init];

                //line below is causing memory leak!
                filepath = [docpath stringByAppendingPathComponent:file];
                //if([filepath isEqualToString:testfile])
                //{
                   // deletefile = NO;
                   // break;
                //} 
                [readPool drain];
            }

            if(deletefile)
            {
                [self logText:[@"\nD: " stringByAppendingString:[@"docs/" stringByAppendingPathComponent:file]]];
                [filemanager removeItemAtPath:[docpath stringByAppendingPathComponent:file] error:NULL];
            }
        }
    }
  • 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-25T18:02:57+00:00Added an answer on May 25, 2026 at 6:02 pm

    I replaced the inner “for” loop with the Objective C equivalent of the php in_array() function and the memory issues disappeared!

        NSUInteger matchint = [allFiles indexOfObject:[docpath stringByAppendingPathComponent:file]];
        if(matchint != NSNotFound)
            deletefile = NO;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Even though the following works: http://jsfiddle.net/N7D5r/ My attempt at using the same code does
Even though it is possible to write generic code in C using void pointer(generic
Even though I have a fermi card(gtx 560) I get this error on VS2010:
Note- even though im using phonegap, the question is not about some issue in
Even though Interface Builder is aware of a MyClass , I get an error
Even though I have GOPATH properly set, I still can't get go build or
Even though it's a valid method, JComboBox#setVisible doesn't hide my JComboBox . Am I
Even though I have read a lot about it I can't get my head
even though php page's header set to UTF-8 i get this error here is
Even though the unselectable method is supposed to disable text selection, it does not

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.