Does ... mean all files in perforce?
Does .开发者_如何学运维.. mean all files in perforce? ....jpg means all jpg files?
Some examples from the documentation:
... Matches all files under the current working directory and all subdirectories. (matches anything, including slashes, and does so across subdirectories)
./....c All files under the current directory and its subdirectories, that end in .c
... is essentially a full wildcard character so ...jpg is the equivalent of searching for *jpg in windows etc.
Its actually meaning depends on where is is used. If used in search it will find all jpg files. If used to define a workspace
//depot/... //myworkspace/...
This means that all files under depot should be put on the path defined by myworkspace. But the meaning 'all' is the same.
精彩评论