Now I understand. To show hidden files you need to use the command
Code:
defaults write com.apple.finder AppleShowAllFiles TRUE
There are two types of hidden file. Those that start with '.' and those that have a hidden flag set. Files with '.' can also have the hidden flag but are hidden even if they don't have the flag. Here are some examples (Applications and Library are not hidden but the rest are):
Code:
ls -lAO
-rw-rw-r-- 1 root admin - 24580 27 Aug 17:01 .DS_Store
d-wx-wx-wt 2 joevt staff hidden 68 2 Aug 15:47 .Trashes
drwxrwxr-x@ 61 root admin - 2074 26 Aug 01:10 Applications
drwxrwxr-t@ 60 root admin - 2040 26 Jul 13:17 Library
drwxr-xr-x@ 39 root wheel hidden 1326 18 Jun 20:36 bin
drwxr-xr-x@ 12 root wheel hidden 408 31 Aug 2009 usr
Are the .pvms hidden? Try the following command:
Code:
ls -lAO ~/Documents/Parallels /Users/Shared/Parallels
/Users/Shared/Parallels is the preferred location when you allow other users on your Mac to use the same virtual machine.
You can use a utility like File Buddy or a command line like chflags to clear the hidden flag (also called the Invisible flag). The following example unhides the /usr folder:
Code:
sudo chflags nohidden /usr
You could use the same command to unhide your .pvm files.