如何用C语言访问另一台机器上的共享文件夹
我是 C/C++ 新手,我需要从另一台计算机上的共享文件夹中检索图像进行处理。我怎样才能做到这一点?有人可以为我提供一些关于如何做到这一点的指导或示例代码吗?另外,我还可以获取共享文件夹中某个文件夹中的文件列表吗?
I'm new in C/C++ and I need to retrieve images from a shared folder place in another computer for processing. How can I do that? Can someone please provide me some guidance or sample codes on how to do it? Besides, can I also get the list of files in a folder in the shared folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打开文件进行读取:
读取目录:
Open a file for reading:
Read a directory:
假设您使用的是 Windows,您可以使用 UNC 路径参考该文件并使用普通的 C/C++ IO(fopen 或 fstream)。只要确保将其作为 C 字符串的一部分正确转义即可。
Assuming you are on Windows, you can use a UNC path to refer to the file and use normal C/C++ IO (fopen or fstream). Just be sure to escape it correctly as part of the C string.