1.0.2 • Published 5 years ago

move-to-range v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

move-to-range

Build Status Current npm package version

Move files to corresponding directories given a range

Installation

npm install --save move-to-range

Usage

const moveToRange = require('move-to-range');

moveToRange('1-4', '.txt');
$ tree
.
├── 1.txt
├── 2.txt
├── 3.txt
├── 4.txt
├── 1
│   └── 1.txt
├── 2
│   └── 2.txt
├── 3
│   └── 3.txt
├── 4
│   └── 4.txt
│ ...

With options:

const moveToRange = require('move-to-range');

moveToRange('1-4', '.txt', {
    destination: 'out'
});
$ tree
.
├── 1.txt
├── 2.txt
├── 3.txt
├── 4.txt
├── out
│   ├── 1
│   │   └── 1.txt
│   ├── 2
│   │   └── 2.txt
│   ├── 3
│   │   └── 3.txt
│   └── 4
│       └── 4.txt
│ ...

Options

PropertyDescriptionDefault
destinationDestination directory""

Related

Authors

  • Austin Gordon - Development - GitHub

License

This project is licensed under the MIT License - see the LICENSE file for details