Lines Matching refs:COPYFILE_EXCL
932 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`)
934 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest`
961 // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
963 await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
2267 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
2269 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
2289 // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
2290 copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
5141 `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
5143 * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
5159 // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
5160 copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
7321 <td><code>COPYFILE_EXCL</code></td>