| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/framework7/node_modules/cpy/ |
Upload File : |
import {type Options as GlobOptions} from 'globby';
import {type Options as CpFileOptions} from 'cp-file';
export type Entry = {
/**
Resolved path to the file.
@example '/tmp/dir/foo.js'
*/
readonly path: string;
/**
Relative path to the file from cwd.
@example 'dir/foo.js'
*/
readonly relativePath: string;
/**
Filename with extension.
@example 'foo.js'
*/
readonly name: string;
/**
Filename without extension.
@example 'foo'
*/
readonly nameWithoutExtension: string;
/**
File extension.
@example 'js'
*/
readonly extension: string;
};
export type Options = {
/**
Working directory to find source files.
@default process.cwd()
*/
readonly cwd?: string;
/**
Flatten directory tree.
@default false
*/
readonly flat?: boolean;
/**
Filename or function returning a filename used to rename every file in `source`.
@example
```
import cpy from 'cpy';
await cpy('foo.js', 'destination', {
// The `basename` is the filename with extension.
rename: basename => `prefix-${basename}`
});
await cpy('foo.js', 'destination', {
rename: 'new-name'
});
```
*/
readonly rename?: string | ((basename: string) => string);
/**
Number of files being copied concurrently.
@default (os.cpus().length || 1) * 2
*/
readonly concurrency?: number;
/**
Ignore junk files.
@default true
*/
readonly ignoreJunk?: boolean;
/**
Function to filter files to copy.
Receives a source file object as the first argument.
Return true to include, false to exclude. You can also return a Promise that resolves to true or false.
@example
```
import cpy from 'cpy';
await cpy('foo', 'destination', {
filter: file => file.extension !== 'nocopy'
});
```
*/
readonly filter?: (file: Entry) => boolean | Promise<boolean>;
} & Readonly<GlobOptions> & CpFileOptions; // eslint-disable-line @typescript-eslint/no-redundant-type-constituents
export type ProgressData = {
/**
Copied file count.
*/
completedFiles: number;
/**
Overall file count.
*/
totalFiles: number;
/**
Completed size in bytes.
*/
completedSize: number;
/**
Completed percentage. A value between `0` and `1`.
*/
percent: number;
/**
The absolute source path of the current file being copied.
*/
sourcePath: string;
/**
The absolute destination path of the current file being copied.
*/
destinationPath: string;
};
export type ProgressEmitter = {
on(
event: 'progress',
handler: (progress: ProgressData) => void
): Promise<string[]>;
};
export type CopyStatus = {
written: number;
percent: number;
};
/**
Copy files.
@param source - Files to copy. If any of the files do not exist, an error will be thrown (does not apply to globs).
@param destination - Destination directory.
@param options - In addition to the options defined here, options are passed to [globby](https://github.com/sindresorhus/globby#options).
@example
```
import cpy from 'cpy';
await cpy([
'source/*.png', // Copy all .png files
'!source/goat.png', // Ignore goat.png
], 'destination');
// Copy node_modules to destination/node_modules
await cpy('node_modules', 'destination');
// Copy node_modules content to destination
await cpy('node_modules/**', 'destination');
// Copy node_modules structure but skip all files except any .json files
await cpy('node_modules/**\/*.json', 'destination');
// Copy all png files into destination without keeping directory structure
await cpy('**\/*.png', 'destination', {flat: true});
console.log('Files copied!');
```
*/
export default function cpy(
source: string | readonly string[],
destination: string,
options?: Options
): Promise<string[]> & ProgressEmitter;