Running an .EXE file with an Input file with a command via matlab
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ivan Mich
am 8 Mär. 2020
Kommentiert: pasquale maris
am 21 Jun. 2022
Hello,
I have a code problem. The purpose is to run an .exe file via command.
I have find the command which is system('file.exe &').
But this file needs an input file ( a .txt file (the name of this file is ab.txt) in cmd file) in order to run.
I have tried these commands but it is no works :
status = system(sprintf('file.exe "%s"',ab.txt));
Could anyone help me?
2 Kommentare
Mario Malic
am 8 Mär. 2020
Try to do it using CMD, if you are able to do it in there just put what you've written in system()
pasquale maris
am 21 Jun. 2022
to run the system command you need to create a unique string with a space bewteen exe and arguments:
A=('C:\Users\*\Documents\...exefilename.exe');
B=('C:\Users\*\Documents\path or agument');
Status = system([A ' ' B]);
Akzeptierte Antwort
Jeff Miller
am 9 Mär. 2020
Bearbeitet: Jeff Miller
am 4 Apr. 2020
sprintf might be overkill here. Maybe just:
status = system('file.exe ab.txt')
If file.exe is not on the Windows path, you might need to include the information about where it is, e.g.
status = system('C:\Software\Bin\file.exe ab.txt')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Software Development Tools finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!