防止在我的网络项目中创建 .DS_Store

发布于 2024-11-14 23:46:34 字数 90 浏览 3 评论 0原文

如何防止在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲影 2024-11-21 23:46:34

简单的回答:你不能。但是,你为什么关心?如果您将它们部署到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文