How to delete .DS_Store files on macOS

This article shows how to delete .DS_Store files from the current directory and all its subdirectories on macOS. 1. Delete “.DS_Store” files The below command will delete .DS_Store files from the current directory and all its subdirectories without asking for confirmation. Terminal find . -name ".DS_Store" -type f -delete The command breakdown: find . – …

Read more

Go to the parent folder on macOS

This article shows how to use a keyboard shortcut to access the parent folder or any item or folder on macOS. 1. Go to the parent folder. (Command + Up Arrow) In Finder, we can press Command + ↑ to access the parent folder of any item or folder. 1.1 For example, in Finder, this …

Read more

Go to a specified folder on macOS

This article shows how to use a keyboard shortcut to go to a specified folder on macOS. 1. Go to a specified folder. (Shift + Command + G) In Finder, there is no explorer to type the path you want to go. To fix it, we can press Shift + Command + G together to …

Read more