C++ Builder 串口控件 | C++ Builder 编程技巧 | C++ Builder 操作指南 | C++ Builder 参考手册 | 基础知识 | cfloat 浮点数 | cmath 数学函数 | cstdlib 标准库函数 | • atof, _ttof, _wtof | • _atold, _ttold, _wtold | • atoi, _ttoi, _wtoi | • atol, _ttol, _wtol | • _atoi64, _ttoi64, _wtoi64 | • strtod, _tcstod, wcstod | • strtof, _tcstof, wcstof | • strtold, _strtold, _tcstold, wcstold, _wcstold | • strtol, _tcstol, wcstol | • strtoll, _tcstoll, wcstoll | • strtoul, _tcstoul, wcstoul | • strtoull, _tcstoull, wcstoull | • itoa, _itot, _itow | • ltoa, _ltoa, _ltot, _ltow | • ultoa, _ultot, _ultow | • _i64toa, _i64tot, _i64tow | • _ui64toa, _ui64tot, _ui64tow | • ecvt, _ecvt | • fcvt, _fcvt | • gcvt, _gcvt | • abs, labs, llabs | • div, ldiv, lldiv | • div_t, ldiv_t, lldiv_t | • _rotl, _crotl, _lrotl | • _rotr, _crotr, _lrotr | • rand, _lrand | • srand | • random | • randomize | • mbstowcs | • mblen | • mbtowc | • mbtowc_cp | • wcstombs | • wctomb | • wctomb_cp | • swab, _swab | • _fullpath, _tfullpath, _wfullpath | • _makepath, _tmakepath, _wmakepath | • _splitpath, _tsplitpath, _wsplitpath | • getenv, _tgetenv, _wgetenv | • putenv, _putenv, _tputenv, _wputenv | • _searchenv, _tsearchenv, _wsearchenv | • _searchstr, _tsearchstr, _wsearchstr | • system, _tsystem, _wsystem | • abort | • atexit | • atexit_t | • exit, _exit | • abort_handler_s | • ignore_handler_s | • constraint_handler_t | • set_constraint_handler_s | • _argc | • _argv, _targv, _wargv; | • _environ, _tenviron, _wenviron | • EXIT_SUCCESS, EXIT_FAILURE | • _MAX_PATH, _MAX_DRIVE, _MAX_DIR, _MAX_FNAME, _MAX_EXT | • MB_CUR_MAX | • RAND_MAX, LRAND_MAX | System 字符串 | System 日期和时间 | System.Math.hpp 数学函数 | 其他数据类型 | VCL 基础类 | VCL 应用程序 | Pictures 图片 | Graphics 绘图 | Additional 控件 | System 控件 | A ~ Z 字母顺序排列的目录 | 网友留言/技术支持 |
|
_makepath, _tmakepath, _wmakepath - 把驱动器名、文件夹名、文件名和后缀组合为完整的路径和文件名 |
_makepath, _tmakepath, _wmakepath:把驱动器名、文件夹名、文件名和后缀组合为完整的路径和文件名
函数原型:
void _makepath(char *path, const char *drive, const char *dir, const char *name, const char *ext); |
void _wmakepath(wchar_t *path, const wchar_t *drive, const wchar_t *dir, const wchar_t *name, const wchar_t *ext); |
头文件:
#include <cstdlib>
命名空间:
std
参数:
path:用来接收返回的完整的路径和文件名;
drive:驱动器名 (盘符),如果 drive 不是空字符串或 NULL,后面没有冒号 ":" 会在生成路径时补充冒号;如果 drive 为空字符串或 NULL,生成的路径将不包括驱动器和冒号;
dir:路径 (文件夹名),如果 dir 不为空字符串或 NULL,后面没有反斜线 "\\" 会在生成路径时后面补充反斜线,但是前面没有反斜线不会在前面补充反斜线;如果 dir 为空字符串或 NULL,生成的路径将不包括路径和反斜线;
name:文件名,直接输出到生成的路径里面;如果 name 为空字符串或 NULL,生成的路径将不包括文件名;
ext:后缀名 (扩展名),如果 ext 不是空字符串或 NULL,前面没有小数点 "." 会在生成路径是前面补充小数点;如果 ext 为空字符串或 NULL,生成的路径将不包括后缀和小数点。
路径和文件名的最大长度,包括字符串结束符:
返回值:
函数没有返回值。
参数 path 会返回生成的路径和文件名。
drive |
dir |
name |
ext |
path |
"d" |
"victor" |
"test" |
"txt" |
"d:victor\\test.txt" |
"d:" |
"victor\\" |
"test" |
".txt" |
"d:victor\\test.txt" |
"d" |
"\\victor" |
"test" |
"txt" |
"d:\\victor\\test.txt" |
"d" |
"\\victor\\cppfans.com" |
NULL |
"txt" |
"d:\\victor\\cppfans.com\\.txt" |
NULL |
"victor\\cppfans.com" |
"test.ini" |
NULL |
"victor\\cppfans.com\\test.ini" |
"d" |
NULL |
"test" |
NULL |
"d:test" |
例子:
void __fastcall TForm1::Button1Click(TObject *Sender)
{
wchar_t path [_MAX_PATH];
wchar_t drive[] = L"d";
wchar_t dir [] = L"victor";
wchar_t name [] = L"test";
wchar_t ext [] = L"txt";
_wmakepath(path, drive, dir, name, ext);
Memo1->Lines->Add(path);
} |
兼容性:
函数 \ C++ Builder 编译器 |
bcc32 |
clang32 |
clang64 |
_makepath |
√ |
√ |
√ |
_tmakepath |
√ |
√ |
√ |
_wmakepath |
√ |
√ |
√ |
相关链接:
• _fullpath • _makepath • _splitpath • getenv • putenv • _searchenv • _searchstr • system
|
|
|
|