2 Feb
2009
2 Feb
'09
8:56 p.m.
Mickael Wolff wrote:
Sean Farrow a écrit :
Hi: I've sorted this, but when appending to this string, (a new file name) do I need to use 1 or 2 backslashes?
snipped context: So either: Path.string().append("\\file.dll"); Or Path.string().append("\file.dll");
You have to buy a book about C++, and read the documentation about the ML. You must escape the slash.
Why not use the path operator/ and not worry about these issues. I think you can: Path / "file.dll" Jeff