Problem:
As a dual OS user: MacOS and Windows, sometimes I get annoyed with hidden directories of MacOS.
MacOS creates these particular directories inside all flash drive that plugged into the machine.
And those directories are visible when we open the flash drive in Windows machine.
The naming starts with dot (.) and duplicates existing non-hidden directories. This redundant naming is confusing for me especially in a situation when my flash drive has many directories.
Solution:
Since this happen only at Windows, here are the steps to delete the hidden files:
- Open cmd window
- Change directory to flash drive location with
cdcommand - Show hidden files with command:
dir /a:h - Delete hidden files with command:
del * /s /q /f /a:h


Leave a comment