Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
文件系统学习营
【文件系统学习】+DMY+任务2 文件匹配
发布于 2018-07-17 10:11:43 浏览:1603
订阅该版
a.开发环境:RT-Thread源码+ENV工具+Source Insight 4.0 完成任务的前提: (1)已经对RTT内核熟悉,了解基本操作,可以在荔枝微课中观看15入门视频学习。 (2)熟悉ENV基本操作,可以在网易云课堂中搜索ENV教学视频。 b.过程及结果: 任务2.文件匹配:有一系列文件如:1.txt,12.txt,123.txt,从中找出1.txt 任务2可以更据ls命令改编,改编思路为,在列出当前文件夹中文件时与输入的文件比较,若与输入的文件名相同则,说明匹配成功打印This Directory has the specifiedfile 若没有匹配的文件则打印check_file failure 具体文件如下,在之前的工程下修改用Source Insight修改main。 #include
#include
#include
#include
#include
#include
int main(void) { printf("hello rt-thread
"); return 0; } static struct dfs_fd fd; static struct dirent dirent; void check_file(int argc, char **argv) { struct stat stat; int length; char *fullpath, *path; char *pathname; int temp=0; fullpath = NULL; if ((argc < 1)&&(argc > 3)) return ; if (pathname == NULL) { #ifdef DFS_USING_WORKDIR /* open current working directory */ path = rt_strdup(working_directory); #else path = rt_strdup("/"); #endif if (path == NULL) return ; /* out of memory */ } else { path = (char *)pathname; } /* list directory */ if (dfs_file_open(&fd, path, O_DIRECTORY) == 0) { rt_kprintf("Directory %s:
", path); do { memset(&dirent, 0, sizeof(struct dirent)); length = dfs_file_getdents(&fd, &dirent, sizeof(struct dirent)); if (length > 0) { memset(&stat, 0, sizeof(struct stat)); /* build full path for each file */ fullpath = dfs_normalize_path(path, dirent.d_name); if (fullpath == NULL) break; if (dfs_file_stat(fullpath, &stat) == 0) { // rt_kprintf("%-20s", dirent.d_name); if (0 == strcmp(argv[1], dirent.d_name)) { rt_kprintf("This Directory has the specified file \"%s\".
", dirent.d_name); temp=1; dfs_file_close(&fd); return ; } } else rt_kprintf("BAD file: %s
", dirent.d_name); rt_free(fullpath); } }while(length > 0); if(temp==0) rt_kprintf("check_file failure \"%s\"
",argv[1]); dfs_file_close(&fd); } else { rt_kprintf("No such directory
"); } if (pathname == NULL) rt_free(path); } MSH_CMD_EXPORT(check_file, check one file contain in the current directory); 修改使用scons编译,qemu.bat运行后实验现象如图: ![600,0](https://oss-club.rt-thread.org/uploads/201807/14/031709ih6h4g467i4pmmgr.png) 以上任务2完成
查看更多
0
个回答
默认排序
按发布时间排序
暂无答案,快来添加答案吧
撰写答案
登录
注册新账号
关注者
0
被浏览
1.6k
关于作者
DMY
这家伙很懒,什么也没写!
提问
11
回答
2
被采纳
0
关注TA
发私信
相关问题
1
【文件系统学习】+DMY+任务1sample例程
2
【文件系统学习】skawu的文件系统跑起来了
3
【文件系统学习】bin5219在qemu-vexpress-a9 中运行一个.c
4
【文件系统学习】skawu之文件匹配学习
5
【文件系统学习】+海中陆地+成功运行文件系统,并运行文...
6
【文件系统学习】+清石+运行文件系统sample例程
7
【文件系统学习】+小燕+运行文件系统sample例程
8
【文件系统学习】+阿暖+运行文件系统 sample 例程
9
【文件系统学习】+小燕+一系列文件中找出指定文件
10
【文件系统学习】+小燕+文件数据替换
推荐文章
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
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
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
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
a1012112796
13
个答案
1
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部