Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
网络学习营
7天网络编程 课程 作业 DAY1-2
发布于 2018-10-16 23:17:07 浏览:1808
订阅该版
先说思路再贴代码 跟着视频跑一遍基本例程 作业1就完成了 我把作业2和作业3和并一起完成,做了两个函数 homework1 和homework2, homework1是在ramfs里创建了三个文件 并在1.txt文件里写入1234567890 homework2是遍历文件目录并找到1.txt,然后替换 abc 然后将这两个函数导出成两个命令行 然后运行后去执行就好了 最后贴代码 这是main.c```#include
#include
#include
int main(void) { printf("hello rt-thread
"); return 0; } #include
#include
/* 当需要使用文件操作时,需要包含这个头文件 */ char* file_name3 = "/3.txt"; char* file_name2 = "/2.txt"; char* file_name1 = "/1.txt"; char* file_buff[1024] = {0}; int homework1(void) { int i = 0; int fd; int index, length, pos; /* 只写 & 创建 打开 */ fd = open(file_name3,O_WRONLY | O_CREAT | O_TRUNC, 0); if (fd < 0) { rt_kprintf("open file 3.txt for write failed
"); return 0; }else{ rt_kprintf("open file 3.txt for write ok
"); close(fd); } fd = open(file_name2, O_WRONLY | O_CREAT | O_TRUNC, 0); if (fd < 0) { rt_kprintf("open file 2.txt for write failed
"); return 0; }else{ rt_kprintf("open file 2.txt for write ok
"); close(fd); } fd = open(file_name1, O_WRONLY | O_CREAT | O_TRUNC, 0); if (fd < 0) { rt_kprintf("open file 1.txt for write failed
"); return 0; }else{ rt_kprintf("step 1: open file 1.txt for write ok
"); } /* 写入数据 */ length = write(fd, "1234567890", 10); if (length != 10){ rt_kprintf("write data failed
"); close(fd); return 0; }else{ rt_kprintf("step 2: write data ok
"); close(fd); } return 0; } int homework2(void) { int fd; int index, length; DIR *dirp; struct dirent *d; dirp = opendir("/"); if(dirp == RT_NULL){ rt_kprintf("open directory error!
"); }else { /* 读取目录*/ while ((d = readdir(dirp)) != RT_NULL) { rt_kprintf("found %s", d->d_name); if(strcmp(d->d_name, "1.txt") == 0){ rt_kprintf("yes
"); }else{ rt_kprintf("no
", d->d_name); } } fd = open(file_name1, O_WRONLY | O_CREAT | O_TRUNC, 0); if (fd < 0) { rt_kprintf("open file for write failed
"); return; } /* 准备写入数据 */ for (index = 0; index < 3; index ++) { file_buff[index] = 'a' + index; } /* 写入数据 */ length = write(fd, file_buff, 3); if (length != 3) { rt_kprintf("write data failed
"); close(fd); return; } /* 关闭文件 */ close(fd); /* 关闭目录 */ closedir(dirp); } dirp = opendir("/web"); fd = open(file_name1, O_WRONLY , 0); if (fd < 0) { rt_kprintf("open file for write failed
"); return; } strcpy(file_buff, "abc"); length = write(fd, file_buff, 3); if (length != 3) { rt_kprintf("write data failed
"); close(fd); return; } /* 关闭文件 */ close(fd); } #ifdef RT_USING_FINSH #include
/* 输出函数到finsh shell 命令行中 */ MSH_CMD_EXPORT(homework1, this is a homework for part1 write); MSH_CMD_EXPORT(homework2, this is a homework for part1 rewrite); #endif```疑问1 官方文档里写的是 FINSH_FUNCTION_EXPORT 好像用不了 MSH_CMD_EXPORT 这个可以用疑问2 strcpy(file_buff, "abc"); length = write(fd, file_buff, 3); 填充数据后 再覆盖写入后 cat 得到的是abc,456789被截断了 小遗憾 实在没时间弄了 要休息了呀 **** ![无标题.png](https://oss-club.rt-thread.org/uploads/201810/16/230706l72c9xggzoxboup7.png)
查看更多
0
个回答
默认排序
按发布时间排序
暂无答案,快来添加答案吧
撰写答案
登录
注册新账号
关注者
0
被浏览
1.8k
关于作者
ynh
这家伙很懒,什么也没写!
提问
1
回答
0
被采纳
0
关注TA
发私信
相关问题
1
【LWIP学习营】第一关开发环境搭建
2
LWIP学习营第一周入门移植问题汇总贴
3
【LWIP学习营】f407+lan8720A小结
4
【LwIP学习营】【第一周】仅零散记录,无主题
5
【LWIP学习营】正点原子探索者F407+LAN8720第一周小结
6
【LwIP学习营】【第一周】网络通信基础及实现TCP 聊天客户端
7
【LwIP学习营】【第一周】LWIP移植
8
【LwIP学习营】【第一周】LWIP移植
9
【LwIP学习营】【第一周】开发板适配
10
【LwIP学习营】【第一周】环境搭建和配置验证
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【24嵌入式设计大赛】基于RT-Thread星火一号的智慧家居系统
2
RT-Thread EtherKit开源以太网硬件正式发布
3
如何在master上的BSP中添加配置yml文件
4
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
5
RT-Thread 发布 EtherKit开源以太网硬件!
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
MicroPython
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
15
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
13
个答案
1
次被采纳
本月文章贡献
程序员阿伟
9
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
RTT_逍遥
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部