扫描目录以查找 c 中的文件
我正在尝试在 c 中创建一个函数,它扫描我的所有路径 C: \ temp (Windows) 以搜索我传递的文件(例如 test.txt),每次找到一个文件时都会返回步骤另一个函数的路径在这个文件的底部写一些东西。 我设法执行写入文件的功能,但不知道如何扫描文件夹并传递找到的文件的地址。
I'm trying to create a function in c which scans all my path C: \ temp (Windows) to search for a file that I pass (eg test.txt) and each time it finds one return the path to steps another function to write something in the bottom of this file.
I managed to do the function that writes to the file but can not figure out how to do that scans the folder and pass the address of the file found.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 FindFirstFile 函数。 这里有一个该函数的使用示例。
Use FindFirstFile function. Here's a good example of this function using.