主页C++ Builder 资料C++ Builder 参考手册cstdlib 标准库函数_fullpath, _tfullpath, _wfullpath
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 字母顺序排列的目录
网友留言/技术支持
_fullpath, _tfullpath, _wfullpath - 相对路径转绝对路径

_fullpath, _tfullpath, _wfullpath - 相对路径转绝对路径

 

函数原型:

char *_fullpath(char *buf, const char *path, _SIZE_T maxlen);
wchar_t *_wfullpath(wchar_t *buf,const wchar_t *path, _SIZE_T maxlen);

tchar.h 函数 项目选项 _TCHAR maps to 选择 wchar_t 映射到 项目选项 _TCHAR maps to 选择 char 映射到
_tfullpath _wfullpath _fullpath

 

头文件:

#include <cstdlib>

 

命名空间:

std

 

参数:

buf:返回完整路径和文件名
path:相对路径文件名
maxlen:参数 buf 能够容纳的字符个数

 

返回值:

转换成功:如果 buf 不等于 NULL,返回值为转换绝对路径之后的参数 buf;如果 buf 等于 NULL,返回用 malloc 分配的 _MAX_PATH 个字符的内存,里面保存着转换为绝对路径的字符串,使用完需要用 free 函数释放内存;
转换失败:返回值为 NULL,例如 path 包含不存在的驱动器名称、或者转换之后的路径和文件名超过了 maxlen 长度,无法保存在 buf 里面。

注:函数并不检查文件是否存在,文件不存在也会转换成功,但是相对路径如果包含了不存在的驱动器名 (盘符) 会转换失败。

 

例子:

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  wchar_t pwsfull[_MAX_PATH];
  Memo1->Lines->Add(std::_wfullpath(pwsfull, L".\\MyData.ini", _MAX_PATH));
}

 

兼容性:

函数 \ C++ Builder 编译器 bcc32 clang32 clang64
_fullpath
_tfullpath
_wfullpath

 

相关链接:

_fullpath_makepath_splitpathgetenvputenv_searchenv_searchstrsystem

◤上一页:swab, _swab下一页:_makepath, _tmakepath, _wmakepath

C++ 爱好者 -- Victor Chen 的个人网站 www.cppfans.com 辽ICP备11016859号