Using option (switches) with Process.Start
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I have the following code:
myProcess.StartInfo.FileName = "c:\\Program Files\\Winzip\\wzunzip.exe -o ";
When I try to use the "-o" switch I get an error of "The system cannot find the file specified ". Works fine without the switch. How can I get this to work? Working with 1.1. Thanx for any input.Jude
-
I have the following code:
myProcess.StartInfo.FileName = "c:\\Program Files\\Winzip\\wzunzip.exe -o ";
When I try to use the "-o" switch I get an error of "The system cannot find the file specified ". Works fine without the switch. How can I get this to work? Working with 1.1. Thanx for any input.Jude
Use Arguments property of ProcessstartInfo class to specify "-o" switch
#region signature my articles #endregion