-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
19 lines (13 loc) · 1.02 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//const test = require('./modulePath/test');
const test = require('bindings')('test'); // UNIX
//const files = ['C:\\files\\text.txt', 'C:\\files\\image.png']; // Пример массива путей к файлам
const files = ['/Users/dalapenko/files/text1.txt', '/Users/dalapenko/files/image.png']; // Модифицированно для UNIX
//const location = 'C:\\location'; // Пример папки, в которую нужно скопировать файлы
const location = '/Users/dalapenko/location'; // Модифицировано для UNIX
function printProgress(text) {
console.log(text);
} // Функция callback, выводящая информацию о скопированном файле. Пример text – “Файл C:\\files\\text.txt скопирован”.
function printSuccess(text) {
console.log(text);
} // Функция callback, выводящая сообщение о завершении копирования
test.copy(files, location, printProgress, printSuccess);