Page 2 of 2

Posted: Fri Apr 21, 2006 7:15 am
by Dandrolvorn
This is my work Dir

Code: Select all

C:\Dokumente und Einstellungen\Dandrolvorn
And this is the Path to the example

Code: Select all

C:\Dokumente und Einstellungen\Dandrolvorn\Eigene Dateien\irrlicht-1.0\irrlicht-1.0\examples.net\01.HelloWorld_cs\bin\Release
:!: But it didn´t work

Posted: Fri Apr 21, 2006 7:28 am
by bitplane
i meant printing your working dir out from within your program.. if thats what you did then it looks like the same thing that happened to me. could be because of a hotfix or something. good old windows.. have you tried a reboot?

Posted: Fri Apr 21, 2006 8:12 am
by Dandrolvorn
multiple, and it does not work :)

Posted: Fri Apr 21, 2006 11:00 am
by Dandrolvorn
i meant printing your working dir out from within your program.
But How?

btw. I try all this on another Computer and it doesn´t work :(

Posted: Fri Apr 21, 2006 2:05 pm
by Xaron
Have you really tried double backslashes like d:\\irrlicht\\ or normal slashes like d:/irrlicht/?

Regards - Xaron

Posted: Fri Apr 21, 2006 5:33 pm
by dr34mr
i agree with xaron. linux uses / for describing dirs, but windows uses \. the problem is that \ is used in c char* types as control characters, and if u put \ in your pathname, compiler won't take it as a backslash, but as a unfinished control character. u should write \\ instead of \. that helped me :D