Process.start don't work
-
hello When i excute this command in MS-dos: U:\\convert C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG it work, but when i do this:
Process.Start("U:\\convert C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG ");
there an error : the file is not found , Thank you verry mutch -
hello When i excute this command in MS-dos: U:\\convert C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG it work, but when i do this:
Process.Start("U:\\convert C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG ");
there an error : the file is not found , Thank you verry mutchC:\\ARV\\pdf\\70863).pdf and C:\\ARV\\jpeg\\70863).JPEG are args? try
Process.Start("U:\\convert","C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG");
-
C:\\ARV\\pdf\\70863).pdf and C:\\ARV\\jpeg\\70863).JPEG are args? try
Process.Start("U:\\convert","C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG");
ProcessStartInfo psi = new ProcessStartInfo(@"cmd.exe", @"/c dir c:\ /s"); Process.Start(psi);