Performance Effective File Accessเพื่อ good read/write throughput บน the small embedded systems ที่มีขนาดที่จำกัดของ memory, application programmer ควรพิจารณาว่า process อะไรที่ถูกทำใน the FatFs module. The file data บน the volume จะถูกส่งถ่ายในลำดับต่อไปนี้โดย f_read function.

The file I/O buffer คือ a sector buffer เพื่อ read/write ส่วนหนึ่งของ data บน the sector. The sector buffer เป็นอย่างใดอย่างหนึ่ง file private sector buffer บนแต่ละ file object หรือ shared sector buffer ใน the filesystem object. The buffer configuration option FF_FS_TINY กำหนดว่า sector buffer ใดถูกใช้สำหรับ the file data transfer. เมื่อ tiny buffer configuration (1) ถูกเลือก, data memory consumption จะถูกลดลง FF_MAX_SS bytes แต่ละ file object. ในกรณีนี้, FatFs module ใช้เฉพาะ a sector buffer ใน the filesystem object สำหรับ file data transfer และ FAT/directory access. ข้อเสียของ the tiny buffer configuration คือ: the FAT data ที่แคชใน the sector buffer จะสูญเสียโดย file data transfer และมันต้องถูกโหลดซ้ำที่ทุกๆ cluster boundary. อย่างไรก็ตามมันจะเหมาะสำหรับ application ส่วนใหญ่จากมุมมองของ the decent performance และ low memory comsumption.
Figure 1 แสดงว่า a partial sector, sector unaligned part of the file, ถูกส่งถ่ายโดยทาง the file I/O buffer. ที่ long data transfer ที่แสดงใน Figure 2, ตรงกลางของ transfer data ที่ครอบคลุมอย่างน้อยหนึ่ง sector ถูกส่งถ่ายไปยัง the application buffer โดยตรง. Figure 3 แสดงว่ากรณีของ transfer data ทั้งหมดถูกทำให้เป็นแถวเดียวกันกับ the sector boundary. ในกรณีนี้, file I/O buffer ไม่ถูกใช้. บน the direct transfer, the maximum extent of sectors ถูกอ่านด้วย disk_read function ในแต่ละครั้งแต่ the multiple sector transfer จะถูกแบ่งที่ cluster boundary ถึงแม้ว่ามันจะต่อเนื่องกันก็ตาม.
ดังนั้น การใช้ความพยายามเพื่อ sector aligned read/write accesss จะกำจัด buffered data transfer และ the read/write performance จะถูกปรับปรุงให้ดีขึ้น. นอกจากผลนี้แล้ว, cached FAT data จะไม่ถูกล้างโดย file data transfer ที่ the tiny configuration, ดังนั้นมันสามารถบรรลุประสิทธิภาพเช่นเดียวกับ non-tiny configuration ที่มี small memory footprint.