如何在Java中更改文件的权限和最后修改时间?
据我所知,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在查看 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 assetReadable(...)
andsetWritable(...)
andsetExecutable(...)
methods (all in thejava.io.File
class). So yes, there is a way...