如何用C语言访问另一台机器上的共享文件夹

发布于 2024-10-18 11:06:47 字数 114 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水中月 2024-10-25 11:06:47

打开文件进行读取:

char* filename = "//machine/shared/image.jpg";
FILE* f = fopen(filename, "r");

读取目录:

struct dirent* ent;
char* path = "//machine/shared";

DIR* d = opendir(path);
while((ent = readdir(d)) != NULL)
{
    printf("%s\n", ent->d_name);
}

Open a file for reading:

char* filename = "//machine/shared/image.jpg";
FILE* f = fopen(filename, "r");

Read a directory:

struct dirent* ent;
char* path = "//machine/shared";

DIR* d = opendir(path);
while((ent = readdir(d)) != NULL)
{
    printf("%s\n", ent->d_name);
}
幸福不弃 2024-10-25 11:06:47

假设您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文