Home of the Squeezebox™ & Transporter® network music players.
Results 1 to 3 of 3
  1. #1

    Squeezebox DB files not visible in OSX

    Why am I not able to see the Squeezebox DB files on either my storage drive or on a thumbdrive (I tested my system with a small number of files) in OSX? All the other files are intact on these drives and visible in OSX. The Squeezebox files appear fine in Windows. The drive is FAT32 formatted.

  2. #2
    Senior Member Mnyb's Avatar
    Join Date
    Feb 2006
    Location
    Västerås Sweden
    Posts
    11,673
    They are probably invisible, I don't know the setting i Mac OS to show invisible files.

    But Mac OS is very unix/linux like these days so they probably.

    adopted the practice of a preceding dot before invisible e directories and files like .something

    They should be perfectly visible in the terminal i think
    --------------------------------------------------------------------
    Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3 sub.
    Bedroom/Office: Boom
    Kitchen: Touch + powered Fostex PM0.4
    Misc use: Radio (with battery)
    iPad1 with iPengHD & SqueezePad
    (in storage SB3, reciever ,controller )
    server HP proliant micro server N36L with ClearOS Linux

    http://people.xiph.org/~xiphmont/demo/neil-young.html

  3. #3
    Senior Member Tony T's Avatar
    Join Date
    Nov 2009
    Posts
    584
    Quote Originally Posted by Mnyb View Post
    They are probably invisible, I don't know the setting i Mac OS to show invisible files.

    But Mac OS is very unix/linux like these days so they probably.

    adopted the practice of a preceding dot before invisible e directories and files like .something

    They should be perfectly visible in the terminal i think
    Yes, OS X will not display a file with a preceding dot in finder.
    You can use Terminal and ls, or run the following Terminal Command to view in Finder

    show all files in Finder:
    defaults write com.apple.finder AppleShowAllFiles 1;killall Finder

    don't show all files in Finder:
    defaults write com.apple.finder AppleShowAllFiles 0;killall Finder

    And here's an Applescript to simplify the task:
    Code:
    set answer to the button returned of (display dialog ("Finder Hidden Files:") buttons {"Show", "Hide", "Cancel"} with icon caution default button 3 with title "Finder Hidden Files")
    if answer is "Show" then
    	tell application "Finder" to quit
    	do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    	delay 2
    	tell application "Finder" to run
    else
    	tell application "Finder" to quit
    	do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    	delay 2
    	tell application "Finder" to run
    end if

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •