如何在Java中更改文件的权限和最后修改时间?

发布于 2024-07-11 19:18:02 字数 63 浏览 7 评论 0原文

据我所知,Java的File类不支持更改文件的权限和最后修改日期。 有没有正确的方法以跨平台的方式做到这一点?

To my knowledge, Java's File class does not support to change the file's permission and last modified date. Is there any proper way to do this in a cross-platform style?

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

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

发布评论

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

评论(1

只有一腔孤勇 2024-07-18 19:18:02

我正在查看 Java 6 文档,并且有一个 setLastModified() 方法,以及 setReadable(...)setWritable(...)setExecutable(...) 方法(全部在 java.io.File 类中)。 所以是的,有一种方法...

I'm looking at the Java 6 documentation, and there is a setLastModified() method, as well as setReadable(...) and setWritable(...) and setExecutable(...) methods (all in the java.io.File class). So yes, there is a way...

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