Getting a directory name from a filename(从文件名中获取目录名)
问题描述
我有一个文件名 (C:folderfoo.txt),我需要在非托管 C++ 中检索文件夹名称 (C:folder).在 C# 中,我会做这样的事情:
I have a filename (C:folderfoo.txt) and I need to retrieve the folder name (C:folder) in unmanaged C++. In C# I would do something like this:
string folder = new FileInfo("C:folderfoo.txt").DirectoryName;
是否有可以在非托管 C++ 中使用的函数从文件名中提取路径?
Is there a function that can be used in unmanaged C++ to extract the path from the filename?
推荐答案
为此有一个标准的 Windows 功能,PathRemoveFileSpec.如果您只支持 Windows 8 及更高版本,强烈建议使用 PathCchRemoveFileSpec 代替.在其他改进中,它不再限于 MAX_PATH
(260) 个字符.
There is a standard Windows function for this, PathRemoveFileSpec. If you only support Windows 8 and later, it is highly recommended to use PathCchRemoveFileSpec instead. Among other improvements, it is no longer limited to MAX_PATH
(260) characters.
这篇关于从文件名中获取目录名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从文件名中获取目录名
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01