# filecopy

> Copy files.

Latest version **4.1.0** (published 2020-01-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install filecopy
pnpm add filecopy
yarn add filecopy
bun add filecopy
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 4.1.0 |
| Published | 2020-01-26 |
| First published | 2015-08-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=7.6 |
| Dependencies | 3 |
| Unpacked size | 13.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Taka Okunishi |
| Maintainers | okunishinishi |
| Keywords | file, copy |

## Links

- npm: https://www.npmjs.com/package/filecopy
- Repository: https://github.com/okunishinishi/node-filecopy
- Homepage: https://github.com/okunishinishi/node-filecopy#readme
- Issues: https://github.com/okunishinishi/node-filecopy/issues
- npm.io page: https://npm.io/package/filecopy

## Dependencies (3)

- [argx](https://npm.io/package/argx.md) ^4.0.4
- [aglob](https://npm.io/package/aglob.md) ^3.0.2
- [mkdirp](https://npm.io/package/mkdirp.md) ^1.0.3

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 4.1.0 (latest) — 2020-01-26
- 4.0.2 — 2019-02-23
- 4.0.1 — 2018-02-01
- 4.0.0 — 2017-09-17
- 3.0.1 — 2017-03-06
- 3.0.0 — 2017-02-01
- 2.1.2 — 2016-09-11
- 2.1.1 — 2016-09-11
- 2.1.0 — 2016-09-11
- 2.0.2 — 2016-07-30
- 2.0.1 — 2016-07-12
- 2.0.0 — 2016-05-01
- 1.0.8 — 2015-09-20
- 1.0.7 — 2015-09-20
- 1.0.6 — 2015-09-19
- … 6 more at https://npm.io/package/filecopy/versions

## README

filecopy
==========

<!---
This file is generated by ape-tmpl. Do not update manually.
--->

<!-- Badge Start -->
<a name="badges"></a>

[![Build Status][bd_travis_shield_url]][bd_travis_url]
[![npm Version][bd_npm_shield_url]][bd_npm_url]
[![JS Standard][bd_standard_shield_url]][bd_standard_url]

[bd_repo_url]: https://github.com/okunishinishi/node-filecopy
[bd_travis_url]: http://travis-ci.org/okunishinishi/node-filecopy
[bd_travis_shield_url]: http://img.shields.io/travis/okunishinishi/node-filecopy.svg?style=flat
[bd_travis_com_url]: http://travis-ci.com/okunishinishi/node-filecopy
[bd_travis_com_shield_url]: https://api.travis-ci.com/okunishinishi/node-filecopy.svg?token=
[bd_license_url]: https://github.com/okunishinishi/node-filecopy/blob/master/LICENSE
[bd_codeclimate_url]: http://codeclimate.com/github/okunishinishi/node-filecopy
[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/okunishinishi/node-filecopy.svg?style=flat
[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/okunishinishi/node-filecopy.svg?style=flat
[bd_gemnasium_url]: https://gemnasium.com/okunishinishi/node-filecopy
[bd_gemnasium_shield_url]: https://gemnasium.com/okunishinishi/node-filecopy.svg
[bd_npm_url]: http://www.npmjs.org/package/filecopy
[bd_npm_shield_url]: http://img.shields.io/npm/v/filecopy.svg?style=flat
[bd_standard_url]: http://standardjs.com/
[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg

<!-- Badge End -->


<!-- Description Start -->
<a name="description"></a>

Copy files.

<!-- Description End -->




<!-- Sections Start -->
<a name="sections"></a>

<!-- Section from "doc/guides/01.Installation.md.hbs" Start -->

<a name="section-doc-guides-01-installation-md"></a>

Installation
-----

```bash
npm install filecopy --save
```

<!-- Section from "doc/guides/01.Installation.md.hbs" End -->

<!-- Section from "doc/guides/02.Usage.md.hbs" Start -->

<a name="section-doc-guides-02-usage-md"></a>

Usage
----

### Copy a Single File

```javascript
#!/usr/bin/env/node
'use strict'

const filecopy = require('filecopy')

filecopy('src/some-text01.txt', 'dest/some-text01-copy.txt', {
  mkdirp: true
}).then(() => {
  /* ... */
});

```

### Copy Multiple Files

```javascript
#!/usr/bin/env node
'use strict'

const filecopy = require('filecopy')

// Copy all files in src directory to dir.
filecopy('src/*.txt', 'dest', {}).then(() => {
  /* ... */
})

```


<!-- Section from "doc/guides/02.Usage.md.hbs" End -->


<!-- Sections Start -->


<!-- LICENSE Start -->
<a name="license"></a>

License
-------
This software is released under the [MIT License](https://github.com/okunishinishi/node-filecopy/blob/master/LICENSE).

<!-- LICENSE End -->

---
_Source: https://npm.io/package/filecopy · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
