我有一个命令shell脚本,可以在LPT端口(打印机本身通过USB连接)上安装打印机(如果重要的话,它是Zebra打印机)并向其发送文件,从而触发实际打印。然后从端口
中删除打印机net use lpt1: \\MyComputer\MyPrinter
copy D:\Test\Printout.epl lpt1
net use lpt1: /delete
如何使用C#代码执行相同操作?
答案 0 :(得分:0)
private static void PrintFile(string path) {
string strCmdText = "/c copy " + path + " LPT1";
Process.Start("CMD.exe", strCmdText); }