How to manipulate a file path

I have a file path obtained from user selection, however, I want to save the output of my function into a higher directory than the one selected by the user.
Is there a way to do that?
example:
user selects "C:\Program Files\User\Test"
and I want to save an output into "C:\Program Files\User\"

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 8 de Mayo de 2013

1 voto

selected_folder='C:\Program Files\User\Test\'
idx=strfind(selected_folder,'\')
folder=selected_folder(1:idx(end-1))

Más respuestas (0)

Categorías

Más información sobre Search Path en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by