find command issue

Hi,

I am not root user. I am trying to find the file which has contains pattern "fvsfile" in root directory.

If i run the find cmd then i got permission denied and all the files are listed include pattern files. i cant get file name yet

find . print | xargs grep -i "fvsfile"

I want exact file nam. which one has contains the patten.

Advice on this ..

Note: I am not root user

Thanks,
Mani

$find .  -type f -print   2>1 | grep -i "fvsfile"

To get rid of error messages from find:

find . print 2>/dev/null | xargs grep -i "fvsfile"