導航:首頁 > 文件類型 > fatfs英文長文件名

fatfs英文長文件名

發布時間:2023-08-12 05:07:48

Ⅰ 如何設置FatFs文件系統支持長文件名

FatFs是一個通用的文件系統模塊,用於在小型嵌入式系統中實現FAT文件系統。 FatFs 的編寫遵循ANSI C,因此不依賴於硬體平台。它可以嵌入到便宜的微控制器中,如 8051, PIC, AVR, SH, Z80, H8, ARM 等等,不需要做任何修改。
FAT12, FAT16 與 FAT32.多個卷(物理驅動器與分區).兩種分區規則: FDISK 與 Super-floppy.多種配置選項:長文件名支持。可選的編碼頁,包括DBCS(譯者:DBCS為雙位元組字元系統 Double Byte Char Systems )多任務支持只讀,最小化API,緩沖區配置等等應用程序介面
H

Ⅱ 如何設置FatFs文件系統支持長文件名

1、理論上不可能允許用戶使用無限長度的文件名,其一,Windows的文件系統提版供文件夾的管理形式,權從而避免了文件名重復,比如c:\1.txt和c:\windows\1.txt,雖然都是1.txt,但是卻不兩個不同的文件,因此不需要超長的文件名。 其二、無限長度的文件名字,勢必導致內存溢出,這就意味著程序的崩潰。 2、windows xp/2003默認的文件名長度為255,路徑長度為260,Win7系統,文件名長度支持最大32767個字元,這足夠用戶使用,系統內核也以此為限制,這種限制是在編寫windows系統時就預設好的,內核中的很多代碼,都以此預設為基礎,因此不會向用戶開放設置介面。

Ⅲ 求助:FatFS 設置長文件名報錯 未定義ff_convert和ff_wtoupper

添加CC936文件沒

Ⅳ fatfs文件系統支持多少文件

fatfs文件系統支持4GB文件。

disk_initialize()等函數是FATFS底層的幾個介面,移植實現後,FATFS的操作跟WINDOWS上的文件操作差不多一樣,FATFS源代碼里有說明文檔自己看,不過設備要先掛載,如果原來的設備沒有文件系統,還要格式化一下,才能用。

對於FAT16文件系統,可以保存的文件體積最大值是4 GB - 1 byte (2^32 bytes - 1 byte);卷的最大體積是4GB;每個卷上最多可以保存的文件數量是65,536個 (2^16);根目錄下可以保存的文件和文件夾數量最大值是512個(如果使用了長文件名,該數字還會減小)。

FatFs 提供下面的函數:

f_mount - 注冊/注銷一個工作區域(Work Area)

f_open - 打開/創建一個文件

f_close - 關閉一個文件

f_read - 讀文件

f_write - 寫文件

f_lseek - 移動文件讀/寫指針

f_truncate - 截斷文件

f_sync - 沖洗緩沖數據 Flush Cached Data

f_opendir - 打開一個目錄

f_readdir - 讀取目錄條目

f_getfree - 獲取空閑簇 Get Free Clusters

Ⅳ sd卡怎麼修改文件目錄和分配表 fatfs

SD的優勢之一是它的便攜性,它可以自由插拔,可以在嵌入式設備和PC機之間交換數據。如果使用FAT(File Allocation Table)文件系統,它便可以方便在安裝windows的PC和嵌入式設備之間交換數據。一個完整的FAT文件系統代碼量非常龐大,不適合資源較少的嵌入式系統,於是就需要一個微型的FAT文件系統,FatFs就是基於這樣的目的而開發的。
FatFS是一個專為小型嵌入式系統設計的通用FAT文件系統模塊。FatFs具有較高的可配置性,最小配置僅使用1K的RAM空間,非常適用於嵌入式系統。FatFs 的編寫遵循ANSI C,並且完全與磁碟I/O層分開。因此,它獨立(不依賴)於硬體架構。它可以被嵌入到低成本的微控制器中,如AVR, 8051, PIC, ARM, Z80, 68K 等等,而不需要做任何修改。
特點
Windows兼容的FAT文件系統
不依賴於平台,易於移植
代碼和工作區佔用空間非常小
多種配置選項:
多卷(物理驅動器和分區)
多ANSI/OEM代碼頁,包括DBCS
在ANSI/OEM或Unicode中長文件名的支持
RTOS的支持
多扇區大小的支持
只讀,最少API,I/O緩沖區等等

FatFs的源代碼只有幾個文件:diskio.c,ff.c,ff_util.c,tff.c及頭文件。diskio.c是磁碟操作的代碼文件(這個文件是移植時要實現的),ff.c是一般FatFs的代碼文件,tff.c是微型FatFs的代碼文件,ff_util.c是幾個輔助函數。integer.h是內部基本類型的定義,ff.h是一般FatFs包含的頭文件,tff.h是微型FatFs包含的頭文件。
[cpp] view plain在CODE上查看代碼片派生到我的代碼片
#if _FATFS_TINY != 1
#include <fatfs/src/ff.h>
#else
#include <fatfs/src/tff.h>
#endif
#include <fatfs/src/ff_util.h>

微型FatFs配置最小時僅佔用內存1KB,但它是一個只讀的FAT系統。
FatFs的配置文件是fatfs_config.h:
[cpp] view plain在CODE上查看代碼片派生到我的代碼片
//------------------------------------------------------------------------------
// General Definitions (previously in ff.h)
//------------------------------------------------------------------------------

#define _FATFS_TINY 0
/* When _FATFS_TINY is set to 1, fatfs is compiled in Tiny mode
/ Else, it is compiled in normal mode
/ Tiny FatFs feature : Very low memory consumption, suitable for small memory
/ system. (1KB RAM) : Supports only single drive, no disk format,
/ only read functions, no write functions */

//------------------------------------------------------------------------------
// Definitions for normal FATFS (previously in ff.h)
//------------------------------------------------------------------------------

#if _FATFS_TINY == 0

#define _MCU_ENDIAN 2
/* The _MCU_ENDIAN defines which access method is used to the FAT structure.
/ 1: Enable word access.
/ 2: Disable word access and use byte-by-byte access instead.
/ When the architectural byte order of the MCU is big-endian and/or address
/ miss-aligned access results incorrect behavior, the _MCU_ENDIAN must be set to 2.
/ If it is not the case, it can also be set to 1 for good code efficiency. */

#define _FS_READONLY 0
/* Setting _FS_READONLY to 1 defines read only configuration. This removes
/ writing functions, f_write, f_sync, f_unlink, f_mkdir, f_chmod, f_rename,
/ f_truncate and useless f_getfree. */

#define _FS_MINIMIZE 0
/* The _FS_MINIMIZE option defines minimization level to remove some functions.
/ 0: Full function.
/ 1: f_stat, f_getfree, f_unlink, f_mkdir, f_chmod, f_truncate and f_rename are removed.
/ 2: f_opendir and f_readdir are removed in addition to level 1.
/ 3: f_lseek is removed in addition to level 2. */

#define _USE_STRFUNC 0
/* To enable string functions, set _USE_STRFUNC to 1 or 2. */

#define _USE_FSINFO 1
/* To enable FSInfo support on FAT32 volume, set _USE_FSINFO to 1. */

#define _USE_SJIS 1
/* When _USE_SJIS is set to 1, Shift-JIS code transparency is enabled, otherwise
/ only US-ASCII(7bit) code can be accepted as file/directory name. */

#define _USE_NTFLAG 1
/* When _USE_NTFLAG is set to 1, upper/lower case of the file name is preserved.
/ Note that the files are always accessed in case insensitive. */

#define _USE_MKFS 1
/* When _USE_MKFS is set to 1 and _FS_READONLY is set to 0, f_mkfs function is
/ enabled. */

#define _DRIVES 2
/* Number of logical drives to be used. This affects the size of internal table. */

#define _MULTI_PARTITION 0
/* When _MULTI_PARTITION is set to 0, each logical drive is bound to same
/ physical drive number and can mount only 1st primaly partition. When it is
/ set to 1, each logical drive can mount a partition listed in Drives[]. */

//------------------------------------------------------------------------------
// Definitions for normal FATFS TINY (previously in tff.h)
//------------------------------------------------------------------------------

#else

#define _MCU_ENDIAN 2
/* The _MCU_ENDIAN defines which access method is used to the FAT structure.
/ 1: Enable word access.
/ 2: Disable word access and use byte-by-byte access instead.
/ When the architectural byte order of the MCU is big-endian and/or address
/ miss-aligned access results incorrect behavior, the _MCU_ENDIAN must be set to 2.
/ If it is not the case, it can also be set to 1 for good code efficiency. */

#define _FS_READONLY 1
/* Setting _FS_READONLY to 1 defines read only configuration. This removes
/ writing functions, f_write, f_sync, f_unlink, f_mkdir, f_chmod, f_rename,
/ f_truncate, f_getfree and internal writing codes. */

#define _FS_MINIMIZE 0
/* The _FS_MINIMIZE option defines minimization level to remove some functions.
/ 0: Full function.
/ 1: f_stat, f_getfree, f_unlink, f_mkdir, f_chmod, f_truncate and f_rename are removed.
/ 2: f_opendir and f_readdir are removed in addition to level 1.
/ 3: f_lseek is removed in addition to level 2. */

#define _USE_STRFUNC 0
/* To enable string functions, set _USE_STRFUNC to 1 or 2. */

#define _USE_FSINFO 1
/* To enable FSInfo support on FAT32 volume, set _USE_FSINFO to 1. */

#define _USE_SJIS 1
/* When _USE_SJIS is set to 1, Shift-JIS code transparency is enabled, otherwise
/ only US-ASCII(7bit) code can be accepted as file/directory name. */

#define _USE_NTFLAG 1
/* When _USE_NTFLAG is set to 1, upper/lower case of the file name is preserved.
/ Note that the files are always accessed in case insensitive. */

#define _USE_FORWARD 0
/* To enable f_forward function, set _USE_FORWARD to 1. */

#define _FAT32 1
/* To enable FAT32 support in addition of FAT12/16, set _FAT32 to 1. */

#endif

//------------------------------------------------------------------------------
// Other definitions
//------------------------------------------------------------------------------

/*-----------------------------------------------------------------------*/
/* Correspondence between drive number and physical drive */
/* Note that Tiny-FatFs supports only single drive and always */
/* accesses drive number 0. */

#define DRV_MMC 0
#define DRV_SDRAM 1
#define DRV_ATA 2
#define DRV_USB 3

#define SECTOR_SIZE_SDRAM 512
#define SECTOR_SIZE_SDCARD 512

Ⅵ FATFS怎麼支持長文件名和漢字

讀寫長文件名測試成功,必須在調用f_readdir前為長文件名分配內存.代碼如下:版
#if _USE_LFN
static char lfn[_MAX_LFN * (_DF1S ? 2 : 1) + 1];
finfo.lfname = lfn;
finfo.lfsize = sizeof(lfn);
#endif
這個在文件系統作權者的幫助文檔里有描述。由於沒有空間放中文碼表,所以用437代碼頁,可以用ASCII長文件名。已測試通過。

可以試試中文碼長文件名.

Ⅶ FATFS 列印的文件名為什麼變成大寫

我寫了個遍歷文件單列印出來是大寫,不知道為什麼
u8 chakan_wenjianjia(u8 * path)
{
if(f_opendir(&dir,(const TCHAR*)path)==FR_OK)
{
while(f_readdir(&dir, &fileinfo)==FR_OK)
{
if (fileinfo.fname[0] == 0) break; //錯誤了/到末尾了,退出
if(fileinfo.fattrib==AM_ARC)
{
printf("%s/", path);//列印路徑
printf("%s\r\n",fileinfo.fname);//列印文件名
}
}
return 0;
}
return 1;
}
////////////////////////////////////////////////////////////我的文件名是小寫,為什麼我列印出來的文件名是大寫

//遍歷文件
//path:路徑
//返回值:執行結果
u8 mf_scan_files(u8 * path)
{
FRESULT res;
char *fn; /* This function is assuming non-Unicode cfg. */
#if _USE_LFN
fileinfo.lfsize = _MAX_LFN * 2 + 1;
fileinfo.lfname = mymalloc(SRAMIN,fileinfo.lfsize);
#endif
res = f_opendir(&dir,(const TCHAR*)path); //打開一個目錄
if (res == FR_OK)
{
//printf("\r\n");
while(1)
{
res = f_readdir(&dir, &fileinfo); //讀取目錄下的一個文件
if (res != FR_OK || fileinfo.fname[0] == 0) break; //錯誤了/到末尾了,退出
if (fileinfo.fname[0] == '.') continue; //忽略上級目錄
#if _USE_LFN
fn = *fileinfo.lfname ? fileinfo.lfname : fileinfo.fname;
#else
fn = fileinfo.fname;
#endif /* It is a file. */
printf("%s/", path);//列印路徑
printf("%s\r\n", fn);//列印文件名
}
}
myfree(SRAMIN,fileinfo.lfname);
return res;
}
這個是原子裡面的,這個列印出來的就正常,、、、、、、看了半天喊是不明白哪裡出了問題

閱讀全文

與fatfs英文長文件名相關的資料

熱點內容
編程能玩什麼游戲 瀏覽:13
怎麼用win10鏡像 瀏覽:552
10歲沒接觸編程學什麼程序好 瀏覽:375
jsselect必填 瀏覽:784
python學習編程需要什麼基礎 瀏覽:114
ug打開文件找不到 瀏覽:859
獲取登錄數據失敗怎麼解決 瀏覽:30
極迅加速沒網路 瀏覽:766
京東代升級 瀏覽:488
開源篩選工具 瀏覽:840
cad怎麼刪除保存的文件 瀏覽:185
哪個app歌聲可以下載 瀏覽:519
解壓過的文件怎麼打開 瀏覽:929
蘋果4s怎麼打開文件 瀏覽:710
別人拷了excel文件怎麼刪 瀏覽:736
微信收發文件查詢系統異常 瀏覽:541
織夢幻燈片調用代碼 瀏覽:126
怪物獵人怎麼升級hr 瀏覽:547
主表關聯子表並查子表中的資料庫 瀏覽:796
蘋果快牙傳輸文件後可以卸載嗎 瀏覽:703

友情鏈接