Results 1 to 7 of 7

Thread: [RESOLVED] file system and FAT V/s NTFS

  1. #1

    Thread Starter
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Resolved [RESOLVED] file system and FAT V/s NTFS

    hi all!!

    can somebody post some link related to the topics??? i am little aware of the file system and have no idea abt difference b/w the 2 popular file systems.

    thnx
    Show Appreciation. Rate Posts.

  2. #2
    Frenzied Member I_Love_My_Vans's Avatar
    Join Date
    Jan 2005
    Location
    In the PHP compiler
    Posts
    1,275

    Re: file system and FAT V/s NTFS


  3. #3
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: file system and FAT V/s NTFS

    I would highly recommend NTFS for many reasons that are in any article or link you could find.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  4. #4
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: file system and FAT V/s NTFS

    Quote Originally Posted by RobDog888
    I would highly recommend NTFS for many reasons that are in any article or link you could find.


    The file allocation table (FAT) is an old file system, developed back in the days of DOS. But, it does still have its uses:
    • Almost all operating systems can read and write to a FAT file system.
    • A FAT file system is ideal for devices with only a small amount of space. The file allocation table itself is only as big as the number of sectors on the disk.
    • Reading and writing files to the disk is fast and requires little overhead.

    There a disadvantages however:
    • A corrupt file allocation table can render the disk unusable as this table contains a map enabling the operating system to find all the information on the disk.
    • Failure of power during a write to the file allocation table can corrupt causing the above.
    • There is no security. Anyone with the appropriate tools and / software can read and write to a FAT partition.
    • The partition becomes fragmented quickly meaning files take longer to retrieve.


    The NTFS file system was built to address the main failings of the FAT file system, to improve reliability and security.
    • It is a journalling file system. Meaning that it can recover easily from a power failure or an event which interrupts a write operation.
    • The file system supports built in compression and encryption. Although this isn't enabled by default.
    • In general MS operating systems are the only OS's which can both read and write to NTFS partitions and encrypted data is ONLY accessible on the computer it was created with an encryption certificate via windows.


    In general you should only ever use NTFS on a partition which you plan to install windows on. If you have dual boot system which is running Windows 9x or Linux too then you should create a separate FAT 32 partition which both OS'es can access and share.

    The main drawback of the NTFS file system is that the file allocation tables and journalling take up allot of space on the disk. As such an NTFS file system does have minimum size (cannot remember what it is ) but a floppy disk and small USB disks are not big enough to house an NTFS file system.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  5. #5
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: file system and FAT V/s NTFS

    KarbosGuide provides some very detailed information on the architecture of file systems.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: file system and FAT V/s NTFS

    Yes, as you pointed out some very good points but I assumed we are talking for a physical hard drive and not other types of storage devices or the list would grow.

    98 and below do not recognise NTFS and I hope no one is planning on install 98 on a new system.

    Most people will be installing 2000 or XP so in those cases you would always use NTFS.

    Very good find on the link. Sounds like an addition to your future upcomming General PC FAQ?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  7. #7

    Thread Starter
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: file system and FAT V/s NTFS

    thnx to all!!
    Show Appreciation. Rate Posts.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width