Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

marionette-file-manager

Package Overview
Dependencies
Maintainers
7
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

marionette-file-manager

A marionette plugin to manage(add, remove) files in device storage.

  • 0.0.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
7
Created
Source

marionette-file-manager

A marionette plugin to manage(add, remove) files in device storage.

Usage

Setup

/**
 * For Gaia usage, please setup the plugin in
 * https://github.com/mozilla-b2g/gaia/blob/master/shared/test/integration/setup.js.
 */
marionette.plugin('fileManager', require('marionette-file-manager'));

Add files into the specified directory

/**
 * The marionette-file-manager plugin will handle the directory things,
 * we do not need to create or remove the directort manually.
 *
 * After do the below script,
 * we will have the two files in the path/to/device-storage/pictures directory.
 *
 * And we could just use { type: 'other-directory', filePath: 'path/to/file1' } to
 * add files into the "other-directory" directory.
 */
client.fileManager.add([
  { type: 'pictures', filePath: 'path/to/file1' },
  { type: 'pictures', filePath: 'path/to/file2', filename: 'filename2' }
]);
// Add all files of a directory into device storage.
client.fileManager.add([
  { type: 'pictures', dirPath: 'path/to/dir' }
]);

Remove files

// Remove the filename2 file from pictures directory.
client.fileManager.remove({ type: 'pictures', filename: 'filename2' });

// Remove all files in device storage.
client.fileManager.removeAllFiles();

FAQs

Package last updated on 13 Jan 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc