使用 Java 7 新 IO 获取文件/目录大小
如何使用 java 7 中的新 NIO 获取文件或目录的大小?
How can I get the size of a file or directory using the new NIO in java 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 java 7 中的新 NIO 获取文件或目录的大小?
How can I get the size of a file or directory using the new NIO in java 7?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用
Files.size(Path)
获取文件的大小。对于目录的大小(指其中包含的所有文件的大小),据我所知,您仍然需要手动递归。
Use
Files.size(Path)
to get the size of a file.For the size of a directory (meaning the size of all files contained in it), you still need to recurse manually, as far as I know.
这是一个准备运行的示例,它还将跳过并记录它无法进入的目录。它使用
java.util.concurrent.atomic.AtomicLong
累积状态。Here is a ready to run example that will also skip-and-log directories it can't enter. It uses
java.util.concurrent.atomic.AtomicLong
to accumulate state.这将计算目录中所有文件的大小。但是,请注意,目录中的所有文件都需要是常规文件,因为 API 指定了 BasicFileAttributes 的大小方法:
“非常规文件的文件大小是特定于实现的,因此未指定。”
如果您偶然发现不受管制的文件,您将不得不不包含它的大小,或者返回一些未知的大小。您可以检查文件是否正常
This would calculate the size of all files in a directory. However, note that all files in the directory need to be regular files, as API specifies size method of BasicFileAttributes:
"The size of files that are not regular files is implementation specific and therefore unspecified."
If you stumble to unregulated file, you ll have either to not include it size, or return some unknown size. You can check if file is regular with