Borrar filtros
Borrar filtros

Create a shortcut to a file in a script

6 visualizaciones (últimos 30 días)
Edward
Edward el 15 de Oct. de 2013
Comentada: Jan el 15 de Oct. de 2013
Hi, i have two problems,
I need to check if a folder exists, it not i create a folder.
After this i need to create a shortcut to a text file in this new or existing folder.
How do i check if a folder exists and create a file shortcut in MATLAB?

Respuestas (1)

Matthew Crema
Matthew Crema el 15 de Oct. de 2013
To create a folder if it does not exist:
if ~exist(foldername,'dir')
mkdir(foldername)
end
To create a shortcut you might use your operating system's appropriate command. Type "help system" at the MATLAB command line.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by