Я форматирую свою флэш-память и выбираю формат ее файловой системы как FAT32 :

А затем взгляните на свойства флэш-памяти:

Как вы видите выше, используется 16 КБ свободного места.


Я изменяю параметры окна, чтобы показать все скрытые и системные файлы:

И взгляните на содержимое флэш-памяти. Как видите, пусто:

Чтобы быть уверенным, я также перечисляю его содержимое с помощью командной строки:

I:\>dir /A
 Volume in drive I is TRANSCEND
 Volume Serial Number is 7E4F-5898

 Directory of I:\

File Not Found

I:\>

Как вы видите выше, он пуст!


Довожу до вашего сведения :

/A в командной строке указать, чтобы показать все файлы (скрытые файлы, системные файлы, ...)

I:\>dir /?
Displays a list of files and subdirectories in a directory.

DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
  [/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]

  [drive:][path][filename]
              Specifies drive, directory, and/or files to list.

  /A          Displays files with specified attributes.
  attributes   D  Directories                R  Read-only files
               H  Hidden files               A  Files ready for archiving
               S  System files               I  Not content indexed files
               L  Reparse Points             -  Prefix meaning not
  /B          Uses bare format (no heading information or summary).
  /C          Display the thousand separator in file sizes.  This is the
              default.  Use /-C to disable display of separator.
  /D          Same as wide but files are list sorted by column.
  /L          Uses lowercase.
  /N          New long list format where filenames are on the far right.
  /O          List by files in sorted order.
  sortorder    N  By name (alphabetic)       S  By size (smallest first)
               E  By extension (alphabetic)  D  By date/time (oldest first)
               G  Group directories first    -  Prefix to reverse order
  /P          Pauses after each screenful of information.
  /Q          Display the owner of the file.
  /R          Display alternate data streams of the file.
  /S          Displays files in specified directory and all subdirectories.
  /T          Controls which time field displayed or used for sorting
  timefield   C  Creation
              A  Last Access
              W  Last Written
  /W          Uses wide list format.
  /X          This displays the short names generated for non-8dot3 file
              names.  The format is that of /N with the short name inserted
              before the long name. If no short name is present, blanks are
              displayed in its place.
  /4          Displays four-digit years

Switches may be preset in the DIRCMD environment variable.  Override
preset switches by prefixing any switch with - (hyphen)--for example, /-W.

Эта проблема становится более забавной, когда я форматирую флэш-память с использованием файловой системы NTFS :

Как вы видите ниже, в этом случае я теряю 125 МБ места во флэш-памяти:

Все остальные шаги, которые я сделал для FAT32, сделайте тот же вывод для NTFS


Q1: в чем проблема? где происхождение этого занятого пространства?

Q2: Могу ли я увидеть те файлы, которые используют пробел?


Просто чтобы получить больше удовольствия, я монтирую эту флешку (с форматированием NTFS) в Linux и смотрю на нее:

Это так странно! у нас есть 87.2MB используемого пространства! (Хотя в windows7 было 125Мб).

И давайте посмотрим на его содержимое с помощью команды ls -a :

Ой! Больше ничего

Q3: Почему используемое пространство отличается для одной вспышки в двух ОС?


Обновление: для формата FAT32 , как для Windows, так и для Linux [в данном случае BackTrack], разницы нет, и в обоих случаях у нас есть 16KB .

Цените ваше время и внимание.

0