Direct.h

From Wikipedia, the free encyclopedia

The correct title of this article is direct.h. The initial letter is shown capitalized due to technical restrictions.

direct.h is the header in the C POSIX library for the C programming language that contains constructs for directory manipulation.

[edit] Member functions

Name Notes
int chdir(char* path)
int chdrive(int drive)
char* getcwd(char* buffer, size_t length)
int getdrive(void)
int mkdir(const char* pathname)
int rmdir(const char* pathname)
void fnmerge(char* path, const char* drive, const char* dir, const char* name, const char* ext)
int fnsplit(const char* path, char* drive, char* dir, char* name, char* ext)
char* searchpath(const char* file)

[edit] External references