gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 16:02:38 28 4
gpt4 key购买 nike

我是 C/C++ 新手,我需要从另一台计算机上的共享文件夹中检索图像进行处理。我怎样才能做到这一点?有人可以为我提供一些关于如何做到这一点的指导或示例代码吗?另外,我还可以获取共享文件夹中某个文件夹中的文件列表吗?

最佳答案

打开文件进行读取:

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);
}

关于c - 如何用C语言访问另一台机器上的共享文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5086413/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com