How to list all directories in a backup?

Is there a way to list only directories in a backup (CLI list or cat command), or do I need to list all files then grep out directories?

You can run duplicacy cat | grep '/"' to fgrep out all directories, since directory names always end with /.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.