How to find files in Perforce using P4V?

I have somewhere in a huge perforce depot file that starts with "Web" and ends with ".pdf", and it is probably placed under // depot / main /. How to find this file in Depot using P4V?

+5
source share
2 answers

It might be easier to find using the command line:

p4 files //depot/main/...Web*.pdf
+9
source

In the left pane of P4V on a tab called "Depot", you right-click on the depot and select "Find File ...". In the opening dialog box, enter the depot tree in which you want to find the file and ".pdf" in the "Name contains:" field. This should display all the ".pdf" files in the specified tree.

+4

All Articles