亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        asp.net 運(yùn)行.bat文件的實(shí)現(xiàn)方法

        字號(hào):


            // create the processinfo object
            system.diagnostics.processstartinfo psi = new system.diagnostics.processstartinfo(cmd.exe);
            psi.useshellexecute = false;
            psi.redirectstandardoutput = true;
            //psi.redirectstandardinput = true;
            psi.redirectstandarderror = true;
            psi.arguments = /k c:\temp\test.bat;
            psi.workingdirectory = c:\temp\;
            // start the process
            system.diagnostics.process proc = system.diagnostics.process.start(psi);
            // attach the output for reading
            system.io.streamreader sout = proc.standardoutput;
            proc.close();
            // read the sout to a string.
            string results = sout.readtoend().trim();
            sout.close();
            // write out the results.
            string fmtstdout = {0};
            this.response.write(string.format(fmtstdout, results.replace(system.environment.newline,
            )));