Open terminal and write these 2 commands
[sourcecode]
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
[/sourcecode]
Related Posts
Capture Save/Load/Remove Image in documents directory
NSFileManager offers a convenient way to write images to and load them from the documents directory. If you’re frequently doing…
Best Practices for Code Review and How to Implement Them
Code review is an essential part of the software development process. It helps catch errors and improve code quality, leading…
MySQL Import Data From EXCEL (csv file)
1. Save as excel document in CSV format. (found as CSV Comma Delimited file) 2. Connect to Mysql through command…