answer348 said:
Can I make some files and folders password protected so that you need the administrator password to open them? If so, how can I do that? Thanks!
This can be done very easily by using UNIX (you know, what's under the hood in Mac OS X

). All you have to do is:
1.- Make those files property of the admin
2.- Change the permissions of the files so only the owner (in this case, the admin) can read, write and execute them
To do this, open terminal, and as the admin do the following (assuming your admin login is pete, and you want to protect the folder "private" and its contents):
chown -R pete private
chmod -R go-rwx private
Hope it helps
EDIT: Found a more user-friendly way to do it, although it only works for only one file or folder at a time (it's not recursive):
Right-click on the file
Choose the second choice (Get Info)
Expand the last tab (Permits and owner), and expand the details
Change them so only the owner can read, write and execute (do not make it executable if it wasn't before, though)