I have scan via "wiaacmgr.exe" with process.start and scanned form.After scanned form its stored at pictures folder but i want to store that form my desired place like D:\images. via C# program.
Process myProcess = new Process();
string Exepath = System.Configuration.ConfigurationManager.AppSettings["Scanexe"];
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.FileName =Exepath+ "Wiaacmgr.exe";
myProcess.Start();
After scan i want to save image my desired place.
Any Idea Please..
Thanks in Advance..