15 photo-management software-recommendation
有谁知道一个应用程序,它允许获得一个文件夹的所有图片的概览,包括所有子文件夹?
我想浏览我的文件系统,然后概览当前文件夹的所有图片,例如 Adobe Bridge(在 Mac 上)。
小智 13
不是应用程序,而是递归显示文件夹和子文件夹图片的有用工具:
feh --recursive --auto-zoom --geometry 1600x1000 ~/Pictures
Run Code Online (Sandbox Code Playgroud)
它还可以生成带有缩略图的图像:
feh -r -i ~/Pictures -O index.png
Run Code Online (Sandbox Code Playgroud)
这并不完全是您(和我)正在寻找的,但它是我目前在 Linux 中找到的唯一一种递归浏览目录图像的选项。