Borrar filtros
Borrar filtros

how use uigetfile to get file or new file

7 visualizaciones (últimos 30 días)
piero
piero el 18 de Jun. de 2023
Movida: dpb el 18 de Jun. de 2023
i give you an example to do it
i want to select a nome list (provaaa.ttslist2) o digit new file (pippo)..
I try it (pippo) with uigetfile but it give me error

Respuesta aceptada

dpb
dpb el 18 de Jun. de 2023
Movida: dpb el 18 de Jun. de 2023
Well, there is no file of that name in the displayed directory; uigetfile does not return a file that does not already exist; that's just the nature of the beast.
To either select an existing file OR allow the user to create a new file, use uiputfile instead; it has the same appearance but will return the new user-supplied file name if given rather than a selected name.
The other difference is that if the user does select an existing name, then a warning dialog is displayed asking if the user wants to overwrite the existing file or not -- this can be disconcerting to a user so may need to be careful in the message one chooses there. Neither actually opens the file; all they do is return the file name/directory to the application for subsequent use however is chosen to do so. Hence, the file will not be overwritten or destroyed when selected in uiputifle despite the default message; that will depend upon what the app does afterwards.
There is no specific UI to give then browser interface to only enter a new file name; if that is the intent and the only acceptable action, then one could use uigetdir to let the user navigate to the desired folder and then follow that up by asking for the new file name in a dialog instead.

Más respuestas (0)

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by