aws codecommit - is there a way to get all files under a folder including its subfolders

Viewed 510

Suppose I have a CodeCommit repo on AWS like this:

repo
-folder1
--file1
--folder2
---file2
---folder3
----file3
aws codecommit get-folder --folder-path "folder1"

only returns "file1" and "folder2"

Is there a way to get "file1" and "folder2/file2" and "folder2/folder3/file3" WITHOUT recursively call "get-folder" on all subfolders?

0 Answers
Related