AR_Engine_SDK
|
Functions | |
function XEPathFileTool | NormalPath (strFullName, reverse) end |
function XEPathFileTool | NormalPath (pFullName, reverse) end |
function XEPathFileTool | GetNormalPath (pFullName, reverse) end |
function XEPathFileTool | GetExpandPath (pPathName) end |
function XEPathFileTool | EncodePath (strKey, strpath) end |
function XEPathFileTool | DecodePath (strKey, strpath) end |
function XEPathFileTool | GetPathDir (strFullName) end |
function XEPathFileTool | GetFileName (strFullName) end |
function XEPathFileTool | GetFileExt (strName) end |
function XEPathFileTool | GetFilePathExceptExt (strName) end |
Variables | |
XEPathFileTool = {} | |
function XEPathFileTool DecodePath | ( | strKey | , |
strpath | |||
) |
对路径解密
strKey | cppstring 密钥 |
strpath | cppstring |
function XEPathFileTool EncodePath | ( | strKey | , |
strpath | |||
) |
对路径加密
strKey | cppstring 密钥 |
strpath | cppstring |
function XEPathFileTool GetExpandPath | ( | pPathName | ) |
获取一个规范化、简化的路径, 以 / 分级
pPathName | string 要规范化的路径 |
function XEPathFileTool GetFileExt | ( | strName | ) |
获取后缀名
strName | cppstring 文件名字 |
function XEPathFileTool GetFileName | ( | strFullName | ) |
从完整的名字中得到名字(带后缀名)
strFullName | cppstring 完整路径 |
function XEPathFileTool GetFilePathExceptExt | ( | strName | ) |
去掉后缀名
strName | cppstring 文件名字 |
function XEPathFileTool GetNormalPath | ( | pFullName | , |
reverse | |||
) |
规范化路径
pFullName | string 要规范化的路径 |
reverse | boolean 默认为true,如果reverse为true,转换为/(反斜杠),否则为(斜杠,Windows命令行识别,不识别/) |
function XEPathFileTool GetPathDir | ( | strFullName | ) |
从完整路径中得到目录部分
strFullName | cppstring 完整路径 |
function XEPathFileTool NormalPath | ( | strFullName | , |
reverse | |||
) |
规范化路径
strFullName | cppstring 要规范化的路径(string类型) |
reverse | boolean 默认为true,如果reverse为true,转换为/(反斜杠),否则为(斜杠,Windows命令行识别,不识别/) |
function XEPathFileTool NormalPath | ( | pFullName | , |
reverse | |||
) |
规范化路径
pFullName | string 要规范化的路径(char类型) |
reverse | boolean 默认为true,如果reverse为true,转换为/(反斜杠),否则为(斜杠,Windows命令行识别,不识别/) |
规范化路径
pFullName | string 要规范化的路径(XString类型) |
reverse | boolean 默认为true,如果reverse为true,转换为/(反斜杠),否则为(斜杠,Windows命令行识别,不识别/) |
XEPathFileTool = {} |