How do I save multiple .txt files from different folders to one new folder?

3 visualizzazioni (ultimi 30 giorni)
I have saved txt files to a directory, but this just gives me the names. I cannot then access the files in the directory and compile them in one place.
  2 Commenti
Stephen23
Stephen23 il 9 Mar 2021
Modificato: Stephen23 il 9 Mar 2021
@Emily Frith: your question is confusing.
For example, the title is "How do I save multiple .txt files from different folders to one new folder?", but then you explained that "I have saved txt files to a directory...". So which of these is correct: are the files in multiple folders (like your title states) or in one folder (as per your explanation)?
"I have saved txt files to a directory, but this just gives me the names"
Saving data in a file does not "give" names. If you "got" the names, then this is due to some other action or process.
"I cannot then access the files in the directory..."
Why not? What have you tried so far?

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 9 Mar 2021
filenames = fullfile({fileList.folder}, {filelist.name});
copyfile(filenames, outputPath);
This assumes that the source files all have different base names (the part without the folder). If the names might be the same, then you need to decide what the output file names are to be in cases where there is a clash.
  7 Commenti
Emily Frith
Emily Frith il 9 Mar 2021
it is a folder.
outputPath = fullfile(mainFolder, 'motion_covariates');
Walter Roberson
Walter Roberson il 9 Mar 2021
Did you check to see whether it exists already and mkdir it if not?
if ~isfolder(outputPath); mkdir(outputPath); end
for R2017a and earlier use isdir() instead of isfolder()

Accedi per commentare.

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by