1.0.8 • Published 4 years ago

flatten-directory v1.0.8

Weekly downloads
82
License
MIT
Repository
-
Last release
4 years ago

Flatten Directory

Copies every file in a directory recursively to a target directory. Renames every file to start with a prefix of the directories walked to avoid naming collisions. Directories are relative to the cwd or current working directory.

Install

npm i -g flatten-directory

Usage without args

flatten-directory

Will use cwd as the root directory and will copy every file into a new directory flatten-directory-output

Usage with args. Every arg is optional.

flatten-directory --rootdir="downloads" --outputdir="downloadsflattened"

The rootdir will be interpreted as cwd/rootdir. In this case cwd/downloads The outputdir will be interpreted as cwd/outputdir. In this case, cwd/downloadsflattened cut will tell flatten-directory to cut/move the files rather than copying them

Example

if rootdir contains the following structure:

rootdir
	|=images
		|=animals
			|-dog.png
			|-wolf.png
	|=audio
		|=animals
			|-bark.mp3
			|-howl.mp3
		|=nature
			|-waterfall.mp3

The files in the outputdir will be the following:

outputdir
	|-images-animals-dog.png
	|-images-animals-wolf.png
	|-audio-animals-bark.mp3
	|-audio-animals-howl.mp3
	|-audio-nature-waterfall.mp3
1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago