支持多进程读取同一个目录
2018-06-17 23:31:53来源:未知 阅读 ()
分享一个自己用的比较多的读取文件函数
错误返回-1
目录为空返回0,
目录有数返回1,
pDir = opendir(cInputPath);
int ReadPath(char *cDestPath, const int *len, const DIR *pDir, const char *cInputPath, const char *cWorkPath) { struct dirent *pRd = NULL; size_t iCount = 0; char cSrcPath[256] = {0}; while (true) { pRd = readdir(pDir); if (pRd == NULL) { if (errno == EBADF) { LOG("ERROR:ReadPath->readdir!\n"); return -1; } /* No data */ rewinddir(pDir); return 0; } else if (strcmp(pRd->d_name, ".") == 0 || strcmp(pRd->d_name, "..") == 0) { continue; } else { snprintf(cSrcPath, sizeof(cSrcPath), "%s/%s", cInputPath, pRd->d_name); snprintf(cDestPath, *len, "%s/%s", cWorkPath, pRd->d_name); if (rename(cSrcPath, cDestPath) < 0) { if (errno == ENOENT || errno == EINVAL) { /* Mutil pro rename file */ if (++iCount >= 3) { LOG("WARN:ReadPath->rename [%s] to [%s]!\n", cSrcPath, cDestPath); rewinddir(pDir); iCount = 0; } continue; } LOG("ERROR:ReadPath->rename [%s] to [%s]!\n", cSrcPath, cDestPath); return -1; } break; } } /* Get current file name memset(cFileName, 0x00, sizeof(cFileName)); strcpy(cFileName, pRd->d_name); */ return 1; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- CreateEvent进程同步 2020-04-19
- C++ 进程和匿名管道使用学习 2020-01-14
- linux与Windows进程控制 2019-11-22
- c++ pipe实现父子进程通信 2019-10-25
- QT解决中文乱码 2019-09-30
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash