资源简介
最新Fatfs 官方源码,亲测可用,已移植至STM32。需要的可以下载。
代码片段和文件信息
/*------------------------------------------------------------/
/ Open or create a file in append mode
/ (This function was sperseded by FA_OPEN_APPEND flag at FatFs R0.12a)
/------------------------------------------------------------*/
FRESULT open_append (
FIL* fp /* [OUT] File object to create */
const char* path /* [IN] File name to be opened */
)
{
FRESULT fr;
/* Opens an existing file. If not exist creates a new file. */
fr = f_open(fp path FA_WRITE | FA_OPEN_ALWAYS);
if (fr == FR_OK) {
/* Seek to end of the file to append data */
fr = f_lseek(fp f_size(fp));
if (fr != FR_OK)
f_close(fp);
}
return fr;
}
int main (void)
{
FRESULT fr;
FATFS fs;
FIL fil;
/* Open or create a log file and ready to append */
f_mount(&fs ““ 0);
fr = open_append(&fil “logfile.txt“);
if (fr != FR_OK) return 1;
/* Append a line */
f_printf(&fil “%02u/%02u/%u %2u:%02u\n“ Mday Mon Year Hour Min);
/* Close the file */
f_close(&fil);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8501 2018-04-07 17:45 documents\00index_e.html
目录 0 2018-07-22 10:30 documents\doc\
文件 3139 2018-04-07 17:45 documents\doc\chdir.html
文件 2207 2018-04-07 17:45 documents\doc\chdrive.html
文件 3023 2018-04-07 17:45 documents\doc\chmod.html
文件 2148 2018-04-07 17:45 documents\doc\close.html
文件 2004 2018-04-07 17:45 documents\doc\closedir.html
文件 19332 2018-07-22 10:26 documents\doc\config.html
文件 1817 2018-04-07 17:45 documents\doc\dinit.html
文件 7628 2018-04-07 17:45 documents\doc\dioctl.html
文件 3763 2018-04-07 17:45 documents\doc\dread.html
文件 2273 2018-04-07 17:45 documents\doc\dstat.html
文件 3493 2018-04-07 17:45 documents\doc\dwrite.html
文件 1706 2018-04-07 17:45 documents\doc\eof.html
文件 1595 2018-04-07 17:45 documents\doc\error.html
文件 5294 2018-08-05 19:22 documents\doc\expand.html
文件 1725 2018-04-07 17:45 documents\doc\fattime.html
文件 4303 2018-04-07 17:45 documents\doc\fdisk.html
文件 10494 2018-04-07 17:45 documents\doc\filename.html
文件 5312 2018-04-07 17:45 documents\doc\findfirst.html
文件 2547 2018-04-07 17:45 documents\doc\findnext.html
文件 5476 2018-04-07 17:45 documents\doc\forward.html
文件 2673 2018-04-07 17:45 documents\doc\getcwd.html
文件 3481 2018-04-07 17:45 documents\doc\getfree.html
文件 3103 2018-04-07 17:45 documents\doc\getlabel.html
文件 3076 2018-04-07 17:45 documents\doc\gets.html
文件 7321 2018-04-07 17:45 documents\doc\lseek.html
文件 2370 2018-04-07 17:45 documents\doc\mkdir.html
文件 7870 2018-04-07 17:45 documents\doc\mkfs.html
文件 5602 2018-04-07 17:45 documents\doc\mount.html
文件 7707 2018-04-07 17:45 documents\doc\open.html
............此处省略60个文件信息
- 上一篇:Canny算子源代码
- 下一篇:南瑞老设备正反向隔离连接调试步骤
相关资源
- FATFS FAT32使用浅谈
- SCUT fuse文件系统
- wdk 中 fastfat文件系统代码
- znFat文件系统源码
- 如何读写FAT32文件系统
- STM32F407VE支持4位EMMC读写和FATFS
- Linux内核探秘 深入解析文件系统和设
- 数据重现:文件系统原理精解与数据
- 基于STM32的智能管家门控系统设计与实
- 数据重现:文件系统原理精解与数据
- Ceph设计原理与实现.pdf
- CiscoASA 5520防火墙flash文件系统恢复步
- stm32+UCOS+UCGUI3.98+FATFS综合程序
- FATFS STM32H743.rar
- Linux内核探秘 深入解析文件系统和设
- 数据重现 文件系统原理精解与数据恢
- stm32+uCOS-II+uCGUI3.98+FatFS完整开源程序
- 带FATFS文件系统的SD卡读写SPI模式
- 智能家居项目资料粤嵌GEC2240
- 多用户多级目录文件系统的实现(代
- STM32L476RC平台的关于SDMMC+fatfs的demo工程
- STM32F407+FREERTOS+LWIP+RMII_KSZ8031+SDIO_FATF
- 这是利用振南文件系统ZNFATFAT32实现数
- nachos 3.4线程+文件系统+虚拟内存实习
- 操作系统课程设计_模拟文件系统
- linux2.6.1内核源码注释
- 嵌入式FAT32文件系统设计与实现--振南
- 振南znFAT--嵌入式FAT32文件系统设计与
- 数据重现 文件系统原理精解与数据恢
- gpfs-4.1.1.0集成3.10.0-693.21.1.el7.x86_64内核
评论
共有 条评论