简体   繁体   English

PhpStorm从上传中排除Excel临时文件

[英]PhpStorm exclude excel temporary files from upload

I want to exclude files like this from upload: ~$test.xlsx 我想从上传中排除这样的文件: ~$test.xlsx

I'm using tools/deployment/options. 我正在使用工具/部署/选项。 I tried: 我试过了:

~$* 〜$ *

but didn't work. 但是没有用 Any idea? 任何想法?

It looks like you cannot use $ there (it may have special meaning in the underlying pattern matching engine). 看起来您不能在那里使用$ (它在基础模式匹配引擎中可能有特殊含义)。

This pattern works just fine: 这种模式很好用:

~* 〜*

It should be OK to use it for your case.. as normally you do not name real project files with leading ~ character... But if anything, you could be more specific and try ~*.xlsx instead. 可以将其用于您的情况。.通常,您不使用引号~命名真实的项目文件...但是,如果有的话,您可以更具体一些,而改用~*.xlsx

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM