I need to execute a Windows "find" command from a Delphi software. I've tried to use the ShellExecute
command, but it doesn't seem to work. In C, I'd use the system
procedure, but here... I don't know. I'd like to do something like this:
System('find "320" in.txt > out.txt');
Edit : Thanks for the answer :) I was trying to run 'Find' as an executable, not as argument for cmd.exe.