If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
How can I include a file that is one folder up from the file that wishes to use it? Thx.
Generally in your current running application directory level you use ./thisfile.xxx and to go back up level you add another dot like ../anotherfile.xxx and so forth or use the complete path is safer like //server/higherDirectory/CurrentDirectory/thisfile.xxx. to go up one level //server/higherDirectory/anotherfile.xxx