> A modification to an earlier question. What I want to know is what are > the files in my directory tree that are non-perforce without having to > click my way thru the tree on the gui client? You could run this from the command-line (tested on Linux): $ find . -type f -o -type l | p4 -x- add -n | grep 'opened for add$' John