'print prn file using c# win forms

I have a c# winforms project
want to print a prn file through zebra label printer

I tried cmd copy /b C:\Users\me\Desktop\zebra\print_3.prn "Zebra Test Printer"
in cmd it says 1 file(s) copied. but nothing going to printer or printer queue
instead a new file is being created same as printer name Zebra Test Printer withut any extension on desktop

In C# I listed all installed printer and chosen zebra printer and then trying below code but here it gives below error

Process process1 = new Process();
process1.StartInfo.FileName = "copy";
string prnFile = "C:\Users\me\Desktop\zebra\print_3.prn";
string selectedPrinter =  "\"Zebra Test Printer\"";
process1.StartInfo.Arguments = " /b " + prnFile + " " + selectedPrinter;
process1.Start();

but this gives error below The system cannot find the file specified

I am open to use any approach just want to print prn file using c#.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source