Thomas Hruska wrote:
> {deleted]
> Yup. That should work (forgot the "\\" though). I generally use
> BString, though and I would probably do something like:
>
> BString a;
>
> a = argv[1] + BString('\\') + argv[2];
>
> For readability reasons. One should always check that there are 3
> elements in the array first (usually via argc).
>
>
>
[deleted]
hopefully everyone will realize that the '\\' is CRAP!!!!!!!!
'/' is a valid path delimiter in ALL STANDARD C++ implementations and
their runtimes.
'\\' is ONLY for Windows...it won't work on anything else..... soooooooooo
if you're writing STANDARD C++ (and if you're not, why aren't you???)
use '/' as the path delimiter