I want to copy image.png
form /folder1
to /folder2
, how to do it?
/folder1
image.png
/folder2
Thanks!
Select what you want to copy. Tap Copy. Touch & hold where you want to paste. Tap Paste.
The vast majority of images on the internet are likely to be protected by copyright. The only way to be 100% sure that an image is safe to copy and use is to seek permission before you do so.
Once in Google Photos, find the photo/video that you wish to save and select it. Then, tap the three-dot icon and select Save to device or Download from the menu. This will save the photo/video on your Android/iOS phone or tablet.
Try something like this:
var fs = require('fs');
var inStr = fs.createReadStream('/your/path/to/file');
var outStr = fs.createWriteStream('/your/path/to/destination');
inStr.pipe(outStr);
Code is not tested, just written down from memory.
Or if you prefer callbacks:
fs = require('fs')
fs.readFile('folder1/image.png', function (err, data) {
if (err) throw err;
fs.writeFile('folder2/image.png', data, function (err) {
if (err) throw err;
console.log('It\'s saved!');
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With