Redirection of output from Console window in MFC
-
Hi All, I have developed MFC Application with command line arguments. In Batch file I am writing , FastCopy.exe Source_path Dest_path >C:\log.txt The redirection of output from console window to C drive is not working . Copying is successfully done. Case 1) As this is MFC Application , I have use following to parse command line arguments. CString sCmdLine= AfxGetApp()->m_lpCmdLine; Case 2) In case of Windows Console Application , i have handle the command line in Main function using argc and argc. The redirection of output is working fine in this case also the copy. I am using "CreateProcess(0, ptr, 0, 0, FALSE, 0, 0, 0, &si, &pi)" in both case where ptr is pointer to string "C:\Robocopy.exe \\Folder1 \\Folder2" The redirection is problem in case of MFC application. Can anybody please let me know where I am going wrong. If there anyother solution let me know Thanks in Advance Ashish.
-
Hi All, I have developed MFC Application with command line arguments. In Batch file I am writing , FastCopy.exe Source_path Dest_path >C:\log.txt The redirection of output from console window to C drive is not working . Copying is successfully done. Case 1) As this is MFC Application , I have use following to parse command line arguments. CString sCmdLine= AfxGetApp()->m_lpCmdLine; Case 2) In case of Windows Console Application , i have handle the command line in Main function using argc and argc. The redirection of output is working fine in this case also the copy. I am using "CreateProcess(0, ptr, 0, 0, FALSE, 0, 0, 0, &si, &pi)" in both case where ptr is pointer to string "C:\Robocopy.exe \\Folder1 \\Folder2" The redirection is problem in case of MFC application. Can anybody please let me know where I am going wrong. If there anyother solution let me know Thanks in Advance Ashish.
Ash20 wrote:
FastCopy.exe Source_path Dest_path >C:\log.txt The redirection of output from console window to C drive is not working . Copying is successfully done.
How is fastcopy.exe writing to the console window?
"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for, in order to get to the job you need to pay for the clothes and the car and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne