C # cmd calls external commands

Source: Internet
Author: User

  voidTest2 () {process process=NewProcess (); //C:\\users\\administrator\\desktop\\ffmpeg\\bin\\ffmpeg.exeProcess. Startinfo.filename ="Cmd.exe";//determine the program name//string scommand = "Shutdown-s";//DOS shutdown Command//c:\\users\\administrator\//"Ffmpeg-i c:\\users\\administrator\\desktop\\ffmpeg\\test.avi-to 00:30 c:\\ttt.avi >c:\\log.txt";//DOS shutdown Command            stringScommand ="CD c:\\users\\administrator\\";//DOS shutdown Commandprocess. Startinfo.arguments= Scommand;//determine the program command lineProcess. Startinfo.useshellexecute =false;//use of the shellProcess. Startinfo.redirectstandardinput =true;//REDIRECT inputProcess. Startinfo.redirectstandardoutput =true;//REDIRECT outputProcess. Startinfo.redirectstandarderror =true;//REDIRECT output errorProcess. Startinfo.createnowindow =true;//Setting the display windowProcess. Start ();//xxProcess. Standardinput.writeline (Scommand);//You can also enter the command in the line in this wayProcess. Standardinput.writeline ("CD c:\\users\\administrator\\desktop\\ffmpeg\\bin\\"); Process. Standardinput.writeline ("ffmpeg-i c:\\users\\administrator\\desktop\\ffmpeg\\test.avi-to 00:30 C:\\ttt.avi"); Process. Standardinput.writeline ("Exit");//add exit or the next line of code//string result = Process. Standardoutput.readtoend (); //output out stream get command line result Fruit//Response.Write (result);}

C # cmd calls external commands

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.