How to find and access a file / folder on the entire hard drive with Matlab?

20 visualizaciones (últimos 30 días)
Can you make a program that does a search for a file or folder on the entire hard drive and can access it through matlab? In case you can: Could you give me the name of the function that allows me to do it? Thank you!

Respuestas (1)

Adam Wyatt
Adam Wyatt el 9 de Sept. de 2020
I would not recommend performing the search itself directly in matlab. Instead I would invoke the system search using the "system" command. For example in windows you could do something along the lines of:
[status, file] = system('dir /s <filename>');
status will tell you if it succeeded and file will be the output as a string.
On linux, there are many system tools that will help you find files quickly.
If using matlab, you can use the "dir" command to list all files and folders. This returns a struct whereby you can check each one if it is a file or a folder. If the former you can compare if the name matches (using strcmp or regexp) and if the latter you can repeat the process within that folder.
The search will be extremely slow - I recommend you narrow the search down.
You will also need to catch for errors (using a try/catch block).

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by