Function unlink

  • Asynchronously removes a file or symbolic link. No arguments other than a possible exception are given to the completion callback.

    import { unlink } from 'node:fs';
    // Assuming that 'path/file.txt' is a regular file.
    unlink('path/file.txt', (err) => {
    if (err) throw err;
    console.log('path/file.txt was deleted');
    });

    fs.unlink() will not work on a directory, empty or otherwise. To remove a directory, use rmdir.

    See the POSIX unlink(2) documentation for more details.

    Parameters

    Returns void

    Since

    v0.0.2

    See

  • Asynchronously removes a file or symbolic link. No arguments other than a possible exception are given to the completion callback.

    import { unlink } from 'node:fs';
    // Assuming that 'path/file.txt' is a regular file.
    unlink('path/file.txt', (err) => {
    if (err) throw err;
    console.log('path/file.txt was deleted');
    });

    fs.unlink() will not work on a directory, empty or otherwise. To remove a directory, use rmdir.

    See the POSIX unlink(2) documentation for more details.

    Parameters

    Returns Promise<void>

    Since

    v0.0.2

    See

Methods

  • Asynchronous unlink(2) - delete a name and possibly the file it refers to.

    Parameters

    • path: PathLike

      A path to a file. If a URL is provided, it must use the file: protocol.

    Returns Promise<void>

Generated using TypeDoc