• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Programmers: quick c question

If you're talking windows, check msdn for something. It seems like the sort of thing that would be part of the winapi.
 
Definately. But...it's OS dependant so you need to look it up.

And yes and no for the "going to the directory it's located." The program never sits in a directory ever. It has a default directory where it will look for things, etc. but when you open something or list the directory, you need to specify the entire path if it is not a local path (ie the path the program is in).
 
Since you're on Windows you need FindFirstFile, FindNextFile and friends. Look it up in MSDN and you'll have all the information you need.
 
Back
Top