Quote:
Originally Posted by Tizzalicious
If anyone else has problems finding the .kobo folder on a mac. Try typing the following in Terminal to show all hidden folders:
defaults write com.apple.finder AppleShowAllFiles 1
and then reboot your computer.
|
Nice tip, but rebooting is not necessary. In the terminal app write
Code:
defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder
and hit the Return button. This will show you all hidden files in Finder immediately. With
Code:
defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder
these files will hide again.
In the terminal you can switch between the last code with the arrow up/down keys, so you don't have to type this over and over again