Reformat SD card to NTFS

74,050

Solution 1

Use the CONVERT command line tool:

convert S: /FS:NTFS /X

Where S: is whatever the drive letter that is assigned to your drive. Using this command, you don't even have to reformat the drive!

Solution 2

Alternatively, you can use WinRAR to break a large file into smaller pieces, and then store that on the SD card. Right click on the file (you've got to have WinRAR installed first), select "Add to Archive", and in the lower left hand corner of the dialog that pops up there's a field that says "Split to Volumes".

Normally, the size of the volumes has to be given in bytes, but you can add "K" or "M" to designate kilobytes or megabytes, respectively. I think "G" will also work (for gigabytes), but I've never tried anything that big.

Solution 3

exFAT also allows files greater than 4 GB. Support for it is built into Windows Vista and Windows 7 and is a free download from Microsoft for XP SP2+.

exFAT (Extended File Allocation Table, AKA FAT64) is a proprietary file system suited especially for USB flash drives, introduced by Microsoft.

The exFAT file system driver incorporates advanced structures for future scalability. The exFAT file system uses 64 bits to describe file size. This allows for applications that depend on very large files. The exFAT file system also allows for clusters as large as 32 MB, effectively enabling very large storage devices. Specifically, exFAT adds the following features:

  • Support for volumes that are larger than 32 GB, the theoretical maximum volume size for FAT32 in Windows XP
    • The theoretical maximum volume size is 64 ZB.
    • The recommended maximum volume size is 512 TB.
  • Support for files that are larger than 4 GB, the theoretical maximum file size for FAT32 in Windows XP
    • The theoretical maximum file size is 64 ZB.
    • The recommended maximum file size is 512 TB.
Share:
74,050
Admin
Author by

Admin

Updated on September 17, 2022

Comments

  • Admin
    Admin almost 2 years

    I want to reformat a 16 GB SD card to NTFS so that I can use it to transfer large files (larger than 4 GB) from one computer to another easily, but my computer will only allow FAT variations.

  • Jon Lin
    Jon Lin over 14 years
    +1 ... hint: recommend 7-zip, it well get you more votes here than WinRAR :)
  • Katerberg
    Katerberg over 14 years
    This doesn't answer the question. Although it is another method of accomplishing the task, it's not the one requested.
  • Jon Lin
    Jon Lin over 14 years
    well, the answer starts with the word 'alternatively' ...
  • Broam
    Broam over 14 years
    This is not the best solution for arbitrary "computer to computer"; other Operating Systems will at least read NTFS; exFAT is probably a bit of a ways off.
  • Bartosz Klimek
    Bartosz Klimek about 12 years
    Works even on XP!
  • Peter Mortensen
    Peter Mortensen over 11 years
    Indeed it does!
  • Bigue Nique
    Bigue Nique over 2 years
    Apparently, Mac OS X is not natively able to read NTFS partitions, but is alright with exFAT. According to the following article, exFAT is the way to go for maximum compatibility with most devices, while overcoming the limitations of FAT32: digitalcitizen.life/…