防止在我的网络项目中创建 .DS_Store
如何防止在我的 PHP 项目中创建 OSX .DS_Store 文件?这太烦人了,当我想将我的应用程序上线或压缩并发送时,我必须手动删除它们。
谢谢。
How can I prevent OSX .DS_Store files from being created in my PHP projects? It's so annoying and I have to manually delete them when I want to put my app online or compress it and send it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的回答:你不能。但是,你为什么关心?如果您将它们部署到 Web 服务器,它们不会造成任何损害。您还可以创建一个脚本来删除它们,特别是如果您创建一个脚本来 zip/tar 您的发行版,您也可以让它删除文件或以忽略它们的方式 tar/zip。像 tar cfX dist.tar ./.DS_Store * 一样,将压缩当前目录中的所有文件夹/文件,但排除(大写 X 开关).DS_Store 文件。
Simple answer: you can't. But, why do you care? They don't hurt if you deploy them to the web server. Also you can make a script to delete them, especially if you make a script to zip/tar your distribution you can also let it either delete the files or tar/zip in a way ignoring them. Like
tar cfX dist.tar ./.DS_Store *
will tar all folders/files in the current directory but exclude (capital X switch) the .DS_Store file.