Reputation:
Hello I'm trying to get Perforce syntax to obtain (for example using "fstat") list of files only in given folder (depot), without rubbish from all sub-folders. But I was not able to find anything in the docs, nothing related when using Google, even experimenting with ".", ".../." etc. lead me to nowhere...
Is that because it's not possible at all? I can't understand why... Isn't that a performance back hit?!
Thanks in advance. Seb.
Upvotes: 1
Views: 1498
Reputation:
Ah finally.
It was partially my own fault - I'd set ExceptionLevel to ExceptionOnBothErrorsAndWarnings... I needed full debug... Unfortunately:
It seems that I have still much to learn on the Perforce though :-/
Thank you guys for your posting. Seb.
Upvotes: 0
Reputation: 882751
A single '*' expands to "all files in this directory" in p4 (no subdirectories). So, e.g. at a Unix shell prompt, in the correct directory in a perforce client:
$ p4 fstat '*'
You need to quote or escape the *
to avoid the shell expanding it, of course;-).
Upvotes: 3