Borrar filtros
Borrar filtros

Obtaining a path name and using it

3 visualizaciones (últimos 30 días)
Frank
Frank el 20 de Mayo de 2011
Hello!
I need some help with getting a path name of a created folder within a directory. The script will create a folder within a specified folder, but how do I get the path for the newly created folder?
Thanks
-Frank
Code
source_dir = uigetdir(); %Folder with the *.tif files
cd(source_dir); %Changes folder to chosen folder
mkdir('Target')
dest_dir(pathname)

Respuesta aceptada

Arnaud Miege
Arnaud Miege el 20 de Mayo de 2011
source_dir = uigetdir(); %Folder with the *.tif files
cd(source_dir); %Changes folder to chosen folder
mkdir('Target');
dest_dir = [pwd '/Target'];

Más respuestas (1)

Oleg Komarov
Oleg Komarov el 20 de Mayo de 2011
pathname = [cd filesep 'Target'];

Categorías

Más información sobre File Operations en Help Center 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