npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@neatflow/fileops

v1.1.6

Published

Export/Import Salesforce files

Downloads

143

Readme

Salesforce CLI File Operations Plugin

NPM Downloads/week License

Install

sf plugins install @neatflow/fileops

Issues

Please report any issues at https://github.com/surajp/cli-files-plugin/issues

Build

To build the plugin locally, make sure to have yarn installed and run the following commands:

# Clone the repository
git clone git@github.com:surajp/cli-files-plugin.git

# Install the dependencies and compile
yarn && yarn build

To use your plugin, run using the local ./bin/dev or ./bin/dev.cmd file.

# Run using local run file.
./bin/dev fileops export

There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.

# Link your plugin to the sf cli
sf plugins link .
# To verify
sf plugins

Commands

sf fileops export

Export binary data for ContentVersion records (Files) from Salesforce

USAGE
  $ sf fileops export -f <value> -d <value> -o <value> [--json] [--flags-dir <value>] [-c <value>] [-i <value>] [-e
    <value>]

FLAGS
  -c, --concurrency=<value>   [default: 3] The number of concurrent requests to make to the Salesforce API.
  -d, --output-dir=<value>    (required) The directory to save the exported contentversion files. The path may be
                              absolute or relative to the current working directory.
  -e, --ext-col-name=<value>  File extension column name.
  -f, --file=<value>          (required) The file containing contentversion ids.
  -i, --id=<value>            [default: Id] Name of the column in the CSV file that contains the ContentVersion Ids.
  -o, --target-org=<value>    (required) Username or alias of the target org. Not required if the `target-org`
                              configuration variable is already set.

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Export binary data for ContentVersion records (Files) from Salesforce

  The command uses concurrent processes to speed up the export process. The input csv file should contain the
  ContentVersion Ids to be exported.

EXAMPLES
  $ sf fileops export --file contentversion-ids.csv

FLAG DESCRIPTIONS
  -c, --concurrency=<value>  The number of concurrent requests to make to the Salesforce API.

    More concurrent requests will be faster but may cause the Salesforce API to return errors and throttle system
    resources.

  -d, --output-dir=<value>

    The directory to save the exported contentversion files. The path may be absolute or relative to the current working
    directory.

    The directory will be created if it does not exist. The exported files will be saved in the directory with the Id as
    the filename. If using an existing directory, any files with the same name will be overwritten.

  -e, --ext-col-name=<value>  File extension column name.

    Name of the column in the csv file containing the file extension. The column may contain just the extension (eg:
    pdf, jpeg, etc.) or filename including extension (eg: AnnualReport.pdf). If specified, the downloaded file will be
    named <fileid>.<extension>. If not, it will just be named <file id>

  -f, --file=<value>  The file containing contentversion ids.

    The csv file should have a column `Id` with the contentversion ids to be exported. The file may contain additional
    columns, but they will be ignored.

sf fileops import

Import ContentVersion records into Salesforce, in bulk.

USAGE
  $ sf fileops import -f <value> -o <value> [--json] [--flags-dir <value>] [-b <value>] [-c <value>]

FLAGS
  -b, --batch-size=<value>   [default: 30] The total size of files (in MB) to import in a single batch. (a single
                             composite api call)
  -c, --concurrency=<value>  [default: 3] Number of parallel batches
  -f, --file=<value>         (required) The file containing ContentVersion data to be imported.
  -o, --target-org=<value>   (required) Username or alias of the target org. Not required if the `target-org`
                             configuration variable is already set.

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Import ContentVersion records into Salesforce, in bulk.

  The command uses composite api and concurrent batches to speed up the upload process. The input csv file should
  contain the following columns: `Title`, `PathOnClient`, `VersionData`. The `VersionData` column should contain the
  path to the file to be imported. Any additional columns should exactly match the field api name of a standard or
  custom field on the ContentVersion object. For looking up parent records based on an `idLookup` field, the column name
  should be `<LookupField>.ParentFieldName` (eg: Contact\_\_r.Email). For a polymorphic lookup field like
  `FirstPublishLocationId`, the column name should be `FirstPublishLocation:<ParentObject>.<ParentField>` (eg:
  FirstPublishLocation:Contact.Email).

EXAMPLES
  $ sf fileops import

FLAG DESCRIPTIONS
  -b, --batch-size=<value>

    The total size of files (in MB) to import in a single batch. (a single composite api call)

    The default value is 30MB. Irrespective of the batch size, the program will ensure there are no more than 190 files
    in a single batch to stay within the composite api subrequests limit of 200.

  -f, --file=<value>  The file containing ContentVersion data to be imported.

    The csv file should atleast have `Title`, `PathOnClient`, `VersionData` columns. VersionData should be the path to
    the file to be imported. Any additional columns should exactly match the field api name of a standard or custom
    field on the ContentVersion object.