467
115
I have a VPS with Suse Linux 10.3.
I've logged in via SSH/putty and am trying to find where my web files are located.
Since I'm uploading via FTP in a directory called httpdocs, I assume that this directory exists somewhere.
My google searches have taught me to do this, go to my root directory and type:
find httpdocs -type d
but it says "No such file or directory".
How can I find this directory?
4In case someone's wondering, the command in the question finds all directories (
-type d
) in the directory entryhttpdocs
(relative to the current working directory, usually but not necessarily a directory). It fails with error message because there is no directory entryhttpdocs
in the system's root directory, and therefore no starting point for a search. – Daniel Beck – 2011-12-30T12:56:16.400