How to press any key to continue after running a command prompt

조회 수: 22 (최근 30일)
Ifeoluwa Ajiboye
Ifeoluwa Ajiboye 2022년 6월 28일
답변: Fangjun Jiang 2022년 6월 28일
i am runnig a command pompt instruction using system(command) where command is a string for instructions to convert some data to CSV files (included in that string is an EXE which converts TDF files also in that string to CSV files). When this is run, the program executes and converts TDF fiies to CSV, after this, there is a press any key to continue to be done.
However, in matlab, my program is just stalled after the files have been converted. How can i add this press any key to the instruction?
  댓글 수: 3
Ifeoluwa Ajiboye
Ifeoluwa Ajiboye 2022년 6월 28일
No it does not the command is "<TDF2CSV.exe" "file2convert.TDF".
Jan
Jan 2022년 6월 28일
Where did you get this function from? Is there a documentation?

댓글을 달려면 로그인하십시오.

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2022년 6월 28일
This is an old technique. Run command as
TDF2CSV.exe file2convert.TDF << Dummy.txt
where Dummy.txt is a text file which contains one character (for your case).
The symbol "<<" is used to re-direct the content of the text file to the command prompt, as if the content of the text file is entered as key input at the prompt. It could be used to provide more elaborate inputs, but in your case, it is just any one key input.
Try this first at the command prompt directly and then make it work with system().
I wonder if below would also work, try it.
TDF2CSV.exe file2convert.TDF << "A"

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by