I have a command, which might resemble the following:
SYNC C:\Users\Fox Mulder\SyncClient C:\Users\Fox Mulder\SyncServer
This is a command that will be entered via a Console Application. It will be read by Console.ReadLine.
How can I parse the command so that I can get the two seperate directory path's?
I am unable to split on space, because that will result in a split at "Fox Mulder".
How can I parse this easily?