File not Found

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Dandrolvorn
Posts: 15
Joined: Thu Apr 20, 2006 4:31 pm

Post 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
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

Post 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?
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
Dandrolvorn
Posts: 15
Joined: Thu Apr 20, 2006 4:31 pm

Post by Dandrolvorn »

multiple, and it does not work :)
Dandrolvorn
Posts: 15
Joined: Thu Apr 20, 2006 4:31 pm

Post 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 :(
Xaron
Posts: 310
Joined: Sun Oct 16, 2005 7:39 am
Location: Germany
Contact:

Post by Xaron »

Have you really tried double backslashes like d:\\irrlicht\\ or normal slashes like d:/irrlicht/?

Regards - Xaron
dr34mr
Posts: 10
Joined: Fri Apr 21, 2006 5:19 pm
Location: poland
Contact:

Post 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
i don't have a drinking problem.
i drink.
i get drunk.
i pass out.
no problem.
Post Reply