lusingander / stu

TUI explorer application for Amazon S3 (AWS S3) 🪣
https://lusingander.github.io/stu/
MIT License
131 stars 7 forks source link

Download files with common prefix ("folder") #16

Open henrikskog opened 1 month ago

henrikskog commented 1 month ago

I use s3 for backups, where I structure the backups using prefixes. It would be cool to be able to download a given backup.

lusingander commented 1 month ago

When displaying a list of files, are you envisioning a feature like "Save recursively" that allows all files under a specific path to be downloaded together?

I agree that this feature is important for this application.

Here are some concerns that have been hindering the implementation:

henrikskog commented 1 month ago

When displaying a list of files, are you envisioning a feature like "Save recursively" that allows all files under a specific path to be downloaded together?

Yes!

I see your concerns! Ratatui probably has some confirmation dialog.

lusingander commented 1 month ago

In reality, the implementation of dialog itself is not particularly difficult. The true challenge in TUI applications lies in determining the appropriate implementation approach, as the way widgets are displayed and interacted with can vary greatly depending on the nature of the application and the developer's perspective.