Lines Matching refs:copyFile
916 ### `fsPromises.copyFile(src, dest[, mode])`
952 import { copyFile, constants } from 'node:fs/promises';
955 await copyFile('source.txt', 'destination.txt');
963 await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
978 the copy behavior as the `mode` argument of `fs.copyFile()`.
1004 See `mode` flag of [`fsPromises.copyFile()`][].
2237 ### `fs.copyFile(src, dest[, mode], callback)`
2279 import { copyFile, constants } from 'node:fs';
2287 copyFile('source.txt', 'destination.txt', callback);
2290 copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
2301 the copy behavior as the `mode` argument of `fs.copyFile()`.
2332 See `mode` flag of [`fs.copyFile()`][].
5171 the copy behavior as the `mode` argument of `fs.copyFile()`.
7313 The following constants are meant for use with [`fs.copyFile()`][].
7981 [`fs.copyFile()`]: #fscopyfilesrc-dest-mode-callback
8016 [`fsPromises.copyFile()`]: #fspromisescopyfilesrc-dest-mode