本文介绍Android开发中如何获取SDCard中某目录下的所有图片并显示出来,下面的我们提供的这个函数是通用的,只要提供路径就可以查询出该目录下所有图片的路径信息,并保存到一个List<String>中. 1.获取SDCard中某个目录下图片路径集合 public List<String> getPictures(final String strPath) { List<String> list = new ArrayList<String>(); Fil…
ls 显示当前目录下的所有文件或者文件夹,但不包括 . 和 .. ls -a 显示当前目录下的所有文件或者文件夹 ls -l 以list方式显示当前文件夹下的文件或者文件夹,显示文件权限, 文件大小,文件修改时间,文件名等信息 ls -l filename 显示指定文件或者文件夹的详细信息 man ls 查看所有关于ls的命令…
use command du display estimate file space usage size of subdirectories [oracle@ahjcyl-db backup]$ pwd/backup[oracle@ahjcyl-db backup]$ du -sh15G .[oracle@ahjcyl-db backup]$ du -h –max-depth=1 /backup/626M /backup/archivedlog5.8G /backup/…
du -ah --max-depth=1 这个是我想要的结果 a表示显示目录下所有的文件和文件夹(不含子目录),h表示以人类能看懂的方式,max-depth表示目录的深度. du命令用来查看目录或文件所占用磁盘空间的大小.常用选项组合为:du -sh 一.du的功能:`du` reports the amount of disk space used by the specified files and for each subdirectory (of directory argum…