multiple txt files selection (all at once)

How can I select multiple txt files in matlab all at once in order to edit them simultaneously afterwards? Is there an algorithm I can use such as uigetfile or uigetdir (which one is more useful?)? Thank you in advance!

 Réponse acceptée

[filenames, filepath] = uigetfile('Pick some files','Multi', 'on');
Now filepath will be a string, and filenames will be a cell array of strings.
If you want the user to pick a directory and then you want to extract all files of a particular kind from the directory, then use uigetdir() together with http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F

1 commentaire

katerina biot
katerina biot le 8 Sep 2015
Thank you very much for your answer. I just started using matlab so there are some other things I would also like to ask. What if other than extraxt them I also want to edit them? I use the same algorithm (uigetdir() together with http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F)? I also want to ask what If the files that I want to process are not sequentially numbered, is there another way or I should rename them? And by ''together'' you mean to use the codes subsequently or to incorporate the one code to the other?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by