能力值:
( LV2,RANK:140 )
|
-
-
2 楼
PathFindFileName
|
能力值:
( LV9,RANK:260 )
|
-
-
3 楼
还有GetFileTitle也行,顺便借地发个自己写的命令行转换成路径的方法
VOID CommandLineToPath(LPTSTR pszCommandLine, LPTSTR pszPath)
{
LPTSTR pStr;
pStr = pszCommandLine;
while(*pStr != '-' && *pStr != '/' && *pStr != '\0')
{
pStr = PathGetArgs(pStr);//获取路径参数
}
if(*pStr == '\0')
lstrcpy(pszPath, pszCommandLine);
else
lstrcpyn(pszPath, pszCommandLine, (INT)(pStr - pszCommandLine));
PathRemoveBlanks(pszPath);//移除空格
PathUnquoteSpaces(pszPath);//移除双引号
}
|
能力值:
( LV15,RANK:520 )
|
-
-
4 楼
还有GetFileTitle也行,顺便借地发个自己写的命令行转换成路径的方法
Linux下面能编译?
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
使用宏定义某些函数,当然是可以编译的..
|
能力值:
( LV15,RANK:520 )
|
-
-
6 楼
求教如何宏定义?
|
|
|