Hi
Assuming you simply want these files inaccessible by anyone besides yourself and root, here's the commands I'd use:
chown -R yourusername.root /path/to/directory
chmod -R 700 /path/to/directory
This should give you full control over your files and directories while still maintaining inaccessibility by anyone else other than root.
Cool