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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:55:37+00:00 2026-06-09T03:55:37+00:00

I would like to retrieve the storage information programmatically like capacity, available storage, total

  • 0

I would like to retrieve the storage information programmatically like capacity, available storage, total number of apps, videos, pics etc.. Thanks in advance..

  • 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-09T03:55:38+00:00Added an answer on June 9, 2026 at 3:55 am

    Looks like WrightsCS answered disk space question.

    If you want number of images, check out ALAssetsLibrary of the AssetsLibrary.framework (you’ll have to include this framework in your “Link Binary With Libraries” section of the Target settings) and then:

    #import <AssetsLibrary/AssetsLibrary.h>
    
    // get the image assets
    
    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
    NSAssert(library, @"Unable to open ALAssetsLibrary");
    
    NSUInteger __block images = 0;
    [library enumerateGroupsWithTypes:ALAssetsGroupAll
                           usingBlock:^(ALAssetsGroup *group, BOOL *stop){
                               NSLog(@"%@", group);
                               images += group.numberOfAssets;
                               dispatch_async(dispatch_get_main_queue(), ^{
                                   // update my UI with the number of images
                               });
                           }
                         failureBlock:^(NSError *err){
                             NSLog(@"err=%@", err);
                         }];
    

    If you want to access the iTunes library on non-jailbroken devices, check out the iPod Library Access Programming Guide, which shows you how to use MPMediaQuery (remember to include the MediaPlayer.framework in your project), and then:

    #import <MediaPlayer/MediaPlayer.h>
    
    MPMediaQuery *everything = [[MPMediaQuery alloc] init];
    NSAssert(everything, @"Unable to open MPMediaQuery");
    
    iTunesMediaCount = [[everything items] count];
    

    I don’t know if there’s a published API for getting the number of apps. There are solutions for jailbroken devices, but I don’t know about the rest of us.

    You didn’t ask about this, but if you want available RAM (not flash storage, but memory available for apps), you can get it via:

    #import <mach/mach.h>
    #import <mach/mach_host.h>
    
    - (void)determineMemoryUsage
    {
        mach_port_t host_port;
        mach_msg_type_number_t host_size;
        vm_size_t pagesize;
    
        host_port = mach_host_self();
        host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t);
        host_page_size(host_port, &pagesize);        
    
        vm_statistics_data_t vm_stat;
    
        if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS)
            NSLog(@"Failed to fetch vm statistics");
    
        /* Stats in bytes */ 
        natural_t mem_used = (vm_stat.active_count +
                              vm_stat.inactive_count +
                              vm_stat.wire_count) * pagesize;
        natural_t mem_free = vm_stat.free_count * pagesize;
        natural_t mem_total = mem_used + mem_free;
    
        // do whatever you want with mem_used, mem_free, and mem_total
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to retrieve a list of links from SQLServer, and programmatically create
I would like to retrieve the AppSetting key from the assembly config file called:
I would like to retrieve the contents of a file, filter and modify them
I would like to retrieve an ordered query result, but I need to have
I would like to retrieve the categories of my website in order to build
I am saving images to the photo library and would like to retrieve them
I have a set of URLs for which I would like to retrieve the
I'm using the python suds module and would like to retrieve the response headers
I am adding data to my database, but would like to retrieve the UnitID
I have an SQL Server 2000 db, and I would like to retrieve summary

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.