News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

the return of fat???

Started by daydreamer, April 03, 2013, 06:22:43 AM

Previous topic - Next topic

daydreamer

I read that you use fat in new memorycard for phones and tablets, REALLY?, it sounds so return to stoneage computer format, mayb because of number of writes is lower compared to NTFS and newer formats?
my none asm creations
https://masm32.com/board/index.php?topic=6937.msg74303#msg74303
I am an Invoker
"An Invoker is a mage who specializes in the manipulation of raw and elemental energies."
Like SIMD coding

dedndave

for drives smaller than a certain size, FAT is a better format
what that size is depends on a lot of things
for a fast device, like RAM, it would probably be a larger value before it's advantageous to use NTFS

daydreamer

Quote from: dedndave on April 03, 2013, 09:10:02 AM
for drives smaller than a certain size, FAT is a better format
what that size is depends on a lot of things
for a fast device, like RAM, it would probably be a larger value before it's advantageous to use NTFS
but I have 64gig+16gig internally, sounds like it should be better suited to NTFS or other more modern file system
my none asm creations
https://masm32.com/board/index.php?topic=6937.msg74303#msg74303
I am an Invoker
"An Invoker is a mage who specializes in the manipulation of raw and elemental energies."
Like SIMD coding

dedndave

maybe one of the other differences swayed their decision
there are many things that an NTFS system does that a FAT system doesn't
so, perhaps due to power consumption considerations, they chose FAT

one of the advantages of NTFS on physical drives is speed, of course
but, for memory-based storage, the difference probably isn't as noticable
it's fast, no matter which format is used   :P

sinsi

One problem with NTFS on a removable drive is that Windows keeps handles to metadata open which makes "safely remove" fail.
Usually the system process (PID 4) has open handles to $MFT and the like. Later Windows versions (XP SP2 and up) prefer exFAT,
although I'm not sure if Linux supports it.