即使在其他平台上使用 Ant 的 tar 任务,也可以设置 Linux 文件权限吗?

发布于 2024-09-18 10:09:05 字数 150 浏览 10 评论 0原文

从 Ant 1.7 开始,TarFileSet 可用,它似乎允许在 tar 存档中修改文件权限。

此功能是否独立于平台工作,以便我可以在 Windows 上创建一个 tar 文件,并为该存档中的脚本文件设置执行权限,如果该文件在 Linux 上解压,该存档将具有此标志?

Starting with Ant 1.7, the TarFileSet is available which seems to allow file permission modifications in the tar archive.

Does this feature work platform-independent, so that I can for example create a tar file on Windows and set execution permissions for script files in this archive which will have this flag if the file is unpacked on Linux?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

通知家属抬走 2024-09-25 10:09:05

是的,您可以使用 tarfileset 设置权限,使用 filemode< /code> 和 dirmode 属性。这在创建 tar 存档时有效,即使在 Windows 上也是如此。

但令人烦恼的是,untar 任务确实支持您可能想要的反向操作:

文件权限将不会恢复
在提取的文件上。

但是,例如,如果您使用 tar -xf,则权限可以正常恢复。

Yes, you can set permissions using tarfileset, using the filemode and dirmode attributes. This works when creating tar archives, even on windows.

Rather annoyingly though, the untar task does not support the reverse operation that you might want:

File permissions will not be restored
on extracted files.

But the permisions are restored fine if you use tar -xf, for example.

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