tags:

views:

32

answers:

1

I need to run some p4 commands using a filespec with a changelist but I don't want to include files in subfolders. Typically the syntax is:

//depot/projectA/...@1234

However, this includes all subfolders. How can I restict the results to be only for the current folder?

+6  A: 
//depot/projectA/*@1234

More details at Perforce Wildcards.

Jon-Eric