shall I open a "windows' *.exe file" by matlab code?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (2개)
Image Analyst
2014년 7월 6일
Use the system() function. For example:
system('notepad.exe')
댓글 수: 4
Image Analyst
2014년 7월 6일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!