Skip to main content

How to show hidden files in Mac with simple short trick

Hi, I hope many times you have come across a situation when you want to show hidden files in your mac like as a iOS Developer sometimes i want to view what files are being created in my git repository.

Modern versions of Mac OS offers super easy way to show hidden files in your mac within seconds.  Let me tell you that hidden files are either system level items, configuration data or some other files which is usually kept hidden from average end user. But since some developers working on Mac might want to fix something or want to view some important data inside any folder so i think it is very essential for advanced Mac user to know how to show hidden files.

So lets learn this awesome short trick to show hidden files which saves your time in future.

show hidden files in mac finder, quickly view hidden files without commands
Mac Finder


Lets open finder and navigate to library folder by typing ~/Library/ in Go to folder.

mac library
Mac Library Folder






Here you can see many files like below but there are some hidden files which you can't see right now.

hidden files
Hidden files not visible in Library


So just press Command + Shift + . to see the magic as below:

Unhidden files
Showing hidden files in Library


 As you can see from above screenshot now, hidden files of your MAC are now visible to you.
 To hide them again you just need to press again Command + Shift + .

If you enjoyed reading this article🙂, then please don't forget to share it with your friends and do subscribe this blog to receive more technical posts in future via email.

Comments

Popular posts from this blog

How to communicate between React Native and Swift using Bridging

In this article we will learn how can we achieve communication between React Native and Swift code. As we know React Native (RN) is great for building cross platform apps, but during development of react native app we might come across a situation where we need to call native code written in swift. This is where bridge module comes in, which allows us to communicate with the native layer of the application. If we are developing app in React Native for iOS and Android platform then we need to create a bridge for each platform. In this article we will discuss creation of React Native Bridge for iOS only. So Let’s start To better understand the concept we will create sample DemoApp in react native using react native CLI. Below are the commands to setup new project in react native. ·       react-native init DemoApp ·       cd DemoApp ·       react-native run-ios On running the app on iOS s...

SOLID Design Principles in Swift

What are solid principles in programming world? 5 SOLID design principles in swift SOLID is acronym used in software programming for making software design more understandable, flexible, scalable and maintainable.  Every Software Developer must be aware of 5 SOLID principles in order to deliver good quality code SOLID stands for what? S -  Single Responsibility principle O - Open Closed Principle L - Liskov substitution Principle I - Interface segregation Principle D - Dependency Inversion Principle If we apply 5 SOLID principles while creating iOS/Mac Apps then the benefits which we will get are as follow: ·       We will have flexible code which can be changed easily. ·       Software code becomes more reusable. ·       Software developed will be robust, scalable and stable. ·       Code is loosely couple which means dependency between the...

What's new in iOS 13

Hi guys, Lets have a quick review on what new features Apple has released in its latest iOS 13 version. iOS 13 version iOS 13 makes old iPhone faster, last longer  - In iOS 13, Face ID unlocking will be 30% faster than before , app launch times are two times faster. Apple also found a way to make app downloads smaller, up to 60% on average. iOS 13 Dark Mode  - Apple introduced new dark mode option which changes the entire look of the operating system from light to dark. All native Apple apps feature Dark Mode support, and third-party apps can use Dark Mode APIs to add Dark Mode integration. iOS 13 features a QuickPath keyboard  - With iOS 13, Apple's default QuickType keyboard will be incorporating swipe-to-type, a popular way of sliding across the keyboard to form words. Before this, we have to use extensions like Google’s Gboard and SwiftKey Sign - In with Apple - Now, we can use Apple sign In to  conveniently sign in to third-party accounts...