2020年10月5日

摘要: 几个需要用到的函数 1、opendir函数 DIR *opendir(const char*name); 参数:一个目录路径,可以是相对也可以绝对; 返回值:成功返回指向目录结构体的指针,失败返回NULL; 2、closedir函数,关闭打开的目录。注意写了opendir函数不能忘记closedir 阅读全文
posted @ 2020-10-05 17:46 潇潇O 阅读(276) 评论(0) 推荐(0) 编辑
 
摘要: 1/* 2 This example program provides a trivial server program that listens for TCP 3 connections on port 9995. When they arrive, it writes a short mess 阅读全文
posted @ 2020-10-05 13:42 潇潇O 阅读(349) 评论(0) 推荐(0) 编辑