Socket
Socket
Sign inDemoInstall

tobostudio.cordova-disk-space-plugin

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tobostudio.cordova-disk-space-plugin

This plugin allows to get information about disk space in Android / iOS / Windows 10 platforms.


Version published
Weekly downloads
2
Maintainers
1
Install size
806 kB
Created
Weekly downloads
 

Readme

Source

Disk Space Plugin

This plugin allows to get information about disk space in Android / iOS / Windows 10 platforms.

Installation

To use this plugin in a project, you have to do:

cordova plugin add https://github.com/sqli/sqli-cordova-disk-space-plugin.git

Add your platforms targeted:

cordova platform add android
cordova platform add ios
cordova platform add windows

Usage

1- You can get disk information by executing the info function:

DiskSpacePlugin.info(options, successCallback, errorCallback);

Where options is a javascript object:

location: 1 // To get information about external storage (For android only)
location: 2 // To get information about internal storage (For android only)

The result object is like that:

{
	"app": 29887, // Space occupied by the current application
	"total": 98717873000, // Total space of the device
	"free": 76556280  // Free space of the device
}

Keywords

FAQs

Last updated on 14 Feb 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc