Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. How to find the available space in SD Card?
Forum Updated to NodeBB v4.3 + New Features

How to find the available space in SD Card?

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
memorysd cardcpp
2 Posts 2 Posters 971 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Mathan M
    wrote on last edited by
    #1

    Hi,

    I have to find the space available in the Internal storage/SD card which is the device, So I can inform the user to download the maps there.
    How to find the available space in InternalStorage[Phone memory/]SD Card in Andorid Device/iPad tablets.

    Thanks In advance.

    raven-worxR 1 Reply Last reply
    0
    • M Mathan M

      Hi,

      I have to find the space available in the Internal storage/SD card which is the device, So I can inform the user to download the maps there.
      How to find the available space in InternalStorage[Phone memory/]SD Card in Andorid Device/iPad tablets.

      Thanks In advance.

      raven-worxR Offline
      raven-worxR Offline
      raven-worx
      Moderators
      wrote on last edited by
      #2

      @Mathan-M
      Following Java code can be used (Can be easily used from JNI if needed)

      // android.os.StatFs
      StatFs stat = new StatFs(Environment.getExternalStorageDirectory().getPath());
      long bytesAvailable = (long)stat.getBlockSize() *(long)stat.getBlockCount();
      

      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
      If you have a question please use the forum so others can benefit from the solution in the future

      1 Reply Last reply
      2

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved