#Copying image files from one folder to another.
6 messages · Page 1 of 1 (latest)
If the answer is yes then the image crate is definitely not what you want as that is for image decoding/encoding
For copying files between folders theres: https://doc.rust-lang.org/std/fs/fn.copy.html
Copies the contents of one file to another. This function will also copy the permission bits of the original file to the destination file.
Copying the whole folder containing images
You have to loop through each file in the folder and use the function above
yea I know that approach, I was expecting to find a crate