如何在没有 dirent.h 的情况下访问 C90 中的目录?
我正在LabCVI基于C90工作。
手头的坦克将在“..\data”目录和子目录中找到“*.spec”文件的绝对路径。
我知道有解释如何使用 dirent.h 做到这一点,但我需要在没有 dirent.h 的情况下执行此操作(第一部分,第二部分 )教程不是我想要的。LabCVI 不具有 dirent 标头,我无法从 Internet 因为 dirent.h 的依赖项与 LabCVI 不兼容。
一旦我删除了对 LabCVI 的所有依赖项,我计划迁移到更好的 IDE/语言,但我必须保持代码兼容到那一天。所以我无法使用 LabCVI 的目录实用程序。
我如何解决这个问题并获得我的目录访问权限?(代码将在 XP 机器上运行。)
i am working in LabCVI on the basis of C90.
The tanks at hand would be to find the absolute paths of "*.spec" files in the "..\data"" directory and subdirectories.
I am aware that there are explanationse how i can do this with dirent.h, but i need to do it without dirent.h. This (part I, part II ) tutorial is not what i am looking for. LabCVI does not feature the dirent header and i cannot import ist from the Internet because the dependencies of dirent.h are incompatible with LabCVI.
I plan to migrate to a better IDE/Language once i killed all dependencies to LabCVI, but i have to keep the code campatible to that day. So i cant use the directory utilities of LabCVI.
How can i work around this and get my directory access? (The Code will run on XP Machines.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
C 语言本身没有目录的概念,因此无法列出或访问它们。如果您的系统不符合 POSIX(指定
dirent.h
)等更高级别的标准,那么您需要寻找特定于系统的解决方案。The C language itself has no concept of directories and thus no way to list or access them. If your system doesn't conform to a higher-level standard like POSIX (which specified
dirent.h
) then you'll need to look for a system-specific solution.您可以使用 FindFirstFile 和类似的函数来执行此操作。
检查此示例代码以了解更多详细信息:http:// /msdn.microsoft.com/en-us/library/aa365200%28v=vs.85%29.aspx
You can use
FindFirstFile
and similar functions to do this.Check this sample code for more details: http://msdn.microsoft.com/en-us/library/aa365200%28v=vs.85%29.aspx
维克拉姆的回答让我写了我使用的代码片段。
查找当前目录下的所有文件
Vikram's answer led me to write this codesnippet wich i used.
Finds all Files in the current directory