At 10:40 AM 5/17/99 -0700, Sujata Kodgire wrote:
>    I guess the problem is with the path. The path has '\\'. Use '\'.

You really shouldn't use '\', because in C, it denotes an escape sequence,
e.g.,  '\n'. Your code might fail with filenames like "c:\test\new.cpp". 
Two errors there! =-)

You should use either '\\' or the unix-style '/' (which works in Windows
API as well.)

Regards,

-Ade

Reply via email to