write-unused-path
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

Write Unused Path

Reliably write to an unused path.

It is basically a wrapper around get-unused-path which doesn't just return an unused path, but also writes to it.

Features

  • It reliably retrieves an unused path via get-unused-path.
  • It attempts to write to it, re-trying in case of failure.
  • It writes files atomically.

Install

npm install --save write-unused-path

Usage

It accepts the same options object as get-unused-path, plus the following options:

{
  autoDispose?: boolean // Automatically dispose once the operation is completed, enabled by default
}

It also returns the same return value as get-unused-path.

import fs from 'fs';
import writeUnusedPath from 'write-unused-path';

async function example () {

  const content = 'some content';

  const {folderPath, filePath, fileName} = await writeUnusedPath ( content, {
    folderPath: '/x/y/z',
    fileName: 'foo.txt',
    // maxTries: 1000,
    // incrementer: ( name, ext, attempt ) => attempt > 1 ? `${name}-${attempt}${ext}` : `${name}${ext}`
  });

  console.log ( folderPath ); // => '/x/y/z'
  console.log ( filePath ); // => '/x/y/z/foo (3).txt'
  console.log ( fileName ); // => 'foo (3).txt'

  console.log ( fs.readFileSync ( filePath, { encoding: 'utf8' } ) ); // => 'some content'

}

example ();

Related

License

MIT © Fabio Spampinato

Readme

Keywords

Package Sidebar

Install

npm i write-unused-path

Weekly Downloads

0

Version

2.0.1

License

none

Unpacked Size

6.6 kB

Total Files

12

Last publish

Collaborators

  • fabiospampinato