◄Summary► ◄Example► ◄Up► ◄Contents► ◄Index► ◄Back► ─────Run-Time Library─────────────────────────────────────────────────────── The _splitpath routine breaks a full path name into its four components. The <path> argument points to a buffer containing the complete path name. The maximum size necessary for each buffer is specified by the _MAX_DRIVE, _MAX_DIR, _MAX_FNAME, and _MAX_EXT manifest constants (defined in STDLIB.H). The other arguments point to the following buffers used to store the path-name elements: Buffer Description <drive> Contains the drive letter followed by a colon (:) if a drive is specified in <path>. <dir> Contains the path of subdirectories, if any, including the trailing slash. Forward slashes (/), backslashes (\), or both may be present in <path>. <fname> Contains the base filename without any extensions. <ext> Contains the filename extension, if any, including the leading period (.). The return parameters contain empty strings for any path-name components not found in <path>. You can pass a null pointer to _splitpath for any component you don't wish to receive. Return Value None. -♦-