In Perforce, I want to list all the files in the current directory but the result should not include the files from the subdirectories.
For example, if I have,
//depot/X/first.c
//depot/X/second.c
//depot/Y/third.c
//depot/Z/fourth.c
The result of the command, when run for //depot/X, would contain first.c and second.c only.
The command,
p4 files //depot/X/...
will list all the files so it is of no use.
I tried with other wildcards like *, but couldn't find an answer.