08-17-2004 06:42 PM
08-18-2004 09:56 AM
10-24-2006 01:11 PM
10-25-2006 04:38 AM
In case you need to build a complex pathname and don't want problems in formatting backslashes or so, you can recursively use MakePathname function to create your file/path name: this example creates the variable <file> that holds the pathname for C:\TEMP\TEST.TXT file.
char file[MAX_PATHNAME_LEN];
MakePathname ("c:", "temp", file);
MakePathname (file, "test.txt", file);