Edge Rewrite
// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a21af4c85cc26102

Jump to content

Direct.h

From Wikipedia, the free encyclopedia

<direct.h> is a C/C++ header file provided by Microsoft Windows, which contains functions for manipulating file system directories. Some POSIX functions that do similar things are in <unistd.h>.

Member functions

[edit]
NameAction
int _chdir(char* path)Change working directory.
int _chdrive(int drive)Change disk drive.
char* _getcwd(char* buffer, size_t length)Get the current working directory pathname[1]
char* _getwd(char* path_name);Get working directory.
int _getdrive(void)Get disk drive.
int _mkdir(const char* pathname)Make a directory.
int _rmdir(const char* pathname)Remove a directory.
void _fnmerge(char* path, const char* drive, const char* dir, const char* name, const char* ext)Merges drive, dir, name and ext into path.
int _fnsplit(const char* path, char* drive, char* dir, char* name, char* ext)Splits path into drive, dir, name and ext.
char* _searchpath(const char* file)Searches for a file.

See also

[edit]

References

[edit]
  1. "Getwd".