开发者

Does ... mean all files in perforce?

开发者 https://www.devze.com 2023-01-30 09:35 出处:网络
Does .开发者_如何学运维.. mean all files in perforce? ....jpg means all jpg files?Some examples from the documentation:

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消