_splitpath在Linux中
Linux是否具有Win32 API _splitpath
函数的等效项?
细节:
void _splitpath ( const char *path, // Path Input
char *drive, // Drive : Output
char *dir, // Directory : Output
char *fname, // Filename : Output
char *ext // Extension : Output
);
它以完整路径作为输入,并提供驱动器,目录,文件名和扩展名作为输出。
回答:
dirname()
和
basename()
以上是 _splitpath在Linux中 的全部内容, 来源链接: utcz.com/qa/428514.html