_splitpath_s, _wsplitpath_s

Breaks a path name into components. These functions are versions of _splitpath, _wsplitpath with security enhancements as described in Security features in the CRT.

Syntax

errno_t _splitpath_s(
   const char * path,
   char * drive,
   size_t driveNumberOfElements,
   char * dir,
   size_t dirNumberOfElements,
   char * fname,
   size_t nameNumberOfElements,
   char * ext,
   size_t extNumberOfElements
);
errno_t _wsplitpath_s(
   const wchar_t * path,
   wchar_t * drive,
   size_t driveNumberOfElements,
   wchar_t *dir,
   size_t dirNumberOfElements,
   wchar_t * fname,
   size_t nameNumberOfElements,
   wchar_t * ext,
   size_t extNumberOfElements
);
template <size_t drivesize, size_t dirsize, size_t fnamesize, size_t extsize>
errno_t _splitpath_s(
   const char *path,
   char (&drive)[drivesize],
   char (&dir)[dirsize],
   char (&fname)[fnamesize],
   char (&ext)[extsize]
); // C++ only
template <size_t drivesize, size_t dirsize, size_t fnamesize, size_t extsize>
errno_t _wsplitpath_s(
   const wchar_t *path,
   wchar_t (&drive)[drivesize],
   wchar_t (&dir)[dirsize],
   wchar_t (&fname)[fnamesize],
   wchar_t (&ext)[extsize]
); // C++ only

Parameters

path
Full path.

drive
Drive letter, followed by a colon (:). You can pass NULL for this parameter if you don't need the drive letter.

driveNumberOfElements
The size of the drive buffer in single-byte or wide characters. If drive is NULL, this value must be 0.

dir
Directory path, including trailing slash. Forward slashes ( / ), backslashes ( \\ ), or both may be used. You can pass NULL for this parameter if you don't need the directory path.

dirNumberOfElements
The size of the dir buffer in single-byte or wide characters. If dir is NULL, this value must be 0.

fname
Base filename (without extension). You can pass NULL for this parameter if you don't need the filename.

nameNumberOfElements
The size of the fname buffer in single-byte or wide characters. If fname is NULL, this value must be 0.

ext
Filename extension, including leading period (.). You can pass NULL for this parameter if you don't need the filename extension.

extNumberOfElements
The size of ext buffer in single-byte or wide characters. If ext is NULL, this value must be 0.

Return value

Zero if successful; an error code on failure.

Error conditions

Condition Return value
path is NULL EINVAL
drive is NULL, driveNumberOfElements is non-zero EINVAL
drive is non-NULL, driveNumberOfElements is zero EINVAL
dir is NULL, dirNumberOfElements is non-zero EINVAL
dir is non-NULL, dirNumberOfElements is zero EINVAL
fname is NULL, nameNumberOfElements is non-zero EINVAL
fname is non-NULL, nameNumberOfElements is zero EINVAL
ext is NULL, extNumberOfElements is non-zero EINVAL
ext is non-NULL, extNumberOfElements is zero EINVAL

If any of the above conditions occurs, the invalid parameter handler is invoked, as described in Parameter validation . If execution is allowed to continue, these functions set errno to EINVAL and return EINVAL.

If any of the buffers is too short to hold the result, these functions clear all the buffers to empty strings, set errno to ERANGE, and return ERANGE.

Remarks

The _splitpath_s function breaks a path into its four components. _splitpath_s automatically handles multibyte-character string arguments as appropriate, recognizing multibyte-character sequences according to the multibyte code page currently in use. _wsplitpath_s is a wide-character version of _splitpath_s; the arguments to _wsplitpath_s are wide-character strings. These functions behave identically otherwise

By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.

Generic-text routine mappings

TCHAR.H routine _UNICODE and _MBCS not defined _MBCS defined _UNICODE defined
_tsplitpath_s _splitpath_s _splitpath_s _wsplitpath_s

Each component of the full path is stored in a separate buffer; the manifest constants _MAX_DRIVE, _MAX_DIR, _MAX_FNAME, and _MAX_EXT (defined in STDLIB.H) specify the maximum allowable size for each file component. File components larger than the corresponding manifest constants cause heap corruption.

The following table lists the values of the manifest constants.

Name Value
_MAX_DRIVE 3
_MAX_DIR 256
_MAX_FNAME 256
_MAX_EXT 256

If the full path doesn't contain a component (for example, a filename), _splitpath_s assigns an empty string to the corresponding buffer.

In C++, using these functions is simplified by template overloads; the overloads can infer buffer length automatically, eliminating the need to specify a size argument. For more information, see Secure template overloads.

The debug library versions of these functions first fill the buffer with 0xFE. To disable this behavior, use _CrtSetDebugFillThreshold.

Requirements

Routine Required header
_splitpath_s <stdlib.h>
_wsplitpath_s <stdlib.h> or <wchar.h>

For more compatibility information, see Compatibility.

Example

See the example for _makepath_s, _wmakepath_s.

See also

File handling
_splitpath, _wsplitpath
_fullpath, _wfullpath
_getmbcp
_makepath, _wmakepath
_setmbcp