Skip to content

Commit

Permalink
Documentation about FAT/VFAT/exFAT
Browse files Browse the repository at this point in the history
  • Loading branch information
hweidner committed Oct 11, 2018
1 parent c8a5f90 commit be7cd17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ physical hard disk. Even sequential copies suffer from the frequent hard disk he
movements which are needed to read and write concurrently on/to the same disk.
Parallel copying even increases the amount of head movements.

Never use psync when writing to a FAT/VFAT/exFAT file system! Those file systems
are best written sequentially. Parallel write access will be slower, and leads
to inefficient data structures and fragmentation. Reading from those file systems
with psync should be efficient.

How it works
------------

Expand Down

0 comments on commit be7cd17

Please sign in to comment.