How can modify file name that imported by uigetfile.

6 vues (au cours des 30 derniers jours)
junghyun pyo
junghyun pyo le 10 Juil 2019
Commenté : junghyun pyo le 15 Juil 2019
i want to load some file by uigetfile.
then how can i use uigetfile data when i want to export file, for example
input file name : abc.csv
-------processing-------
output file name : abc_modified.csv
(for export, i use writetable.)

Réponse acceptée

Guillaume
Guillaume le 10 Juil 2019
Note that if it's for saving/exporting, you should use uiputfile instead of uigetfile.
Regardless, all these functions do is return you a char vector with the name of the selected file. You're free to do whatever you want with that variable, just like any other variable.
[filename, path] = uigetfile;
[~, base, extension] = fileparts(filename);
newfilename = [base, '_modified', extension];
writetable(sometable, fullfile(path, newfilename));

Plus de réponses (0)

Catégories

En savoir plus sur Dialog Boxes dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by