artelsfeelp
New Member
I'm trying to compare two folders using a third party comparison tool called UltraCompare. The following line calls the program and opens two files... but this doesn't do anything except open them, plus it doesn't work properly for folders.\[code\]Process.Start("C:\\Program Files\\IDM Computer Solutions\\UltraCompare\\uc.exe", textBoxContents1 + " " + textBoxContents2);\[/code\]I'd like to use the following command line call which opens two folders, runs a comparison on them, and stores the results in output.txt: uc -d -dmf "c:\dir1" "c:\dir2" -o "c:\output.txt"Also, I'd need to use variables for the folders instead of hardcoding the paths.How can I work that into my C# code?