Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find files in Perforce using P4V?

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

like image 586
amuliar Avatar asked Apr 02 '13 13:04

amuliar


2 Answers

It's probably easier finding using command line:

p4 files //depot/main/...Web*.pdf
like image 183
devnull Avatar answered Oct 05 '22 08:10

devnull


In P4V's left pane in the tab that is titled "Depot" you right-click on a depot and the select "Find file ...". In the opening dialog you enter the depot tree in that you want to search the file and ".pdf" in the "Name contains:" field. That should list all the ".pdf" files in the specified tree.

like image 32
pitseeker Avatar answered Oct 05 '22 07:10

pitseeker