MacOS – How to change FAT32 file attributes under OS X

fat32filesystemmacos

FAT and FAT32 file systems support file attributes like "read only". How can I change those under OS X? The standard chmod command does not seem to do the trick. How else can I do this?

Best Answer

Under OS X, the FAT/FAT32 file system Readonly attribute is set when a file is locked. When a file is viewed in the Finder application, a small lock will appear on the file icon. This Readonly attribute can be set or unset by highlighting the file and then selecting "File->Get Info" from the menu bar. The Readonly attribute can then be modified by checking or unchecking the box labeled "Locked".

This also can be done from the command line. First, to view the attributes use the command below.

ls -lO <filename>

To set the Readonly attribute use the following command.

chflags uchg <filename>

To reset the Readonly attribute use the following command.

chflags nochg <filename>

To set the Hidden attribute use the following command.

chflags hidden <filename>

To reset the Hidden attribute use the following command.

chflags nohidden <filename>

To set the Archive attribute use the following command. Note: this command is the opposite of what one would expect to enter."

sudo chflags noarch <filename>

To reset the Archive attribute use the following command. Note: this command is the opposite of what one would expect to enter."

sudo chflags arch <filename>

Note: The System attribute does not seem to have an OS X equivalent. So even if the Windows command attib can alter the System attribute, the OS X command chflags can not.