MATLAB: How do i copy the content of a folder into another folder.

filesfolderin anothersave

I have a folder with 5 matfiles and I want to copy these matfiles into an empty folder I have created . Please how do i go about it. Thank you

Best Answer

doc copyfile
doc dir
doc fullfile
Use dir to get the file name and current path, fullfile to build the old and new full file paths and copyfile to copy them one at a time in a loop.