Hi,
I need to be able to to split the executable path and arguments in a command.
Windows handles the following easily:
"notepad.exe C:\testfile.txt"
"notepad c:\testfolder\versioninfo.txt"
"C:\Windows\notepad.exe" "C:\test folder\versioninfo.txt"
rundll "C\Windows\somelibrary.dll"
Anyone has a piece of code to parse such strings?
Thanks.