linux如何查询文件及文件夹大小?

2021-02-05 16:07:42

参考地址 linux如何查询文件及文件夹大小?

linux下查询文件及文件夹大小不像windows那么简单,需要使用命令进行查看,本经验将介绍如何查询文件大小、各文件夹大小及总大小统计方法。

工具/原料

  • Linux OS

方法/步骤

  1. 最简单的查看方法可以使用ls -ll、ls-lh命令进行查看,当使用ls -ll,会显示成字节大小,而ls- lh会以KB、MB等为单位进行显示,这样比较直观一些。

    linux如何查询文件及文件夹大小?

  2. 通过命令du -h –max-depth=1 *,可以查看当前目录下各文件、文件夹的大小,这个比较实用。

    linux如何查询文件及文件夹大小?

  3. 查询当前目录总大小可以使用du -sh,其中s代表统计汇总的意思,即只输出一个总和大小。

    linux如何查询文件及文件夹大小?

  4. 同样,通过命令du -h –max-depth=0 *,可以只显示直接子目录文件及文件夹大小统计值。

    linux如何查询文件及文件夹大小?

  5. 如果只想查看指定目录的总大小,可以使用du -sh 目录名称。

    linux如何查询文件及文件夹大小?

  6. 对于指定文件夹也可以指定显示层次深度,如du -h --max-depth=0 software/及du -h --max-depth=1 software/

    linux如何查询文件及文件夹大小?

    END

注意事项

  • 查系统文件结构及使用大小用df -h,和实际文件大小是不一样的。


  • 2017-11-10 00:06:15

    CORS: credentials mode is 'include'

    XMLHttpRequest cannot load http://localhost/Foo.API/token. The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:5000' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

  • 2017-11-19 00:17:51

    Java如何获取Date的“昨天”与“明天”示例代码

    最近在做项目的时候用到Date和Calendar比较多,而且用到的方式也比较全,突然想到一个问题,Java如何获取Date的"昨天"与"明天",也就是前一天和后一天呢?思考后写出了方法,想着万一以后用到,就总结出来,也方便有需要的朋友们参考借鉴,下面来一起看看吧。