shall I open a "windows' *.exe file" by matlab code?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to made an GUI in which I plan to open a windows' exe file by matlab code, how?
In addition, shall I search an exe file on windows by matlab code?
Thanks!
0 Commenti
Risposte (2)
Image Analyst
il 6 Lug 2014
Use the system() function. For example:
system('notepad.exe')
4 Commenti
Image Analyst
il 6 Lug 2014
Explain why you don't know where the program you want to run is. If you need to , you can search the entire hard drive for it as long as you know the base file name. See my attached demo where I recursively search a folder and all subfolders.
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!