how to convert hard disk or usb flash from FAT32 to NTFS file system



FAT32 and NTFS are file systems created for keeping track of files in the hard disk. A file system is a set of logical constructs that dictate how the space on a disk volume is to be utilized. NTFS is more robust and effective simply because of its advanced features and functionalities. FAT, in general, comprises of overly simplistic data structures, hence making operations more time consuming. The functionalities of NTFS are far more over-powering since it makes use of advanced data structures to improve reliability, disk space utilization and overall performance.

 you can convert the file system directly from FAT32 to NTFS BY using dos command line as follows :.
 Just open up an Administrator mode command prompt by right-clicking and choosing Run as Administrator, and then you can type convert /? to see the syntax for the convert command.

In our example, the drive letter is G: so the command we’d use is this:
convert G: /FS:NTFS
The conversion process might take a while, especially if you’ve got a really large drive.

It’s pretty simple, right?

Source: howtogeek

Comments