Skip to content

Version 0.4.0

Latest
Compare
Choose a tag to compare
@umputun umputun released this 10 Apr 03:19
· 3 commits to master since this release
f3b522c

What's New

  • Added DeleteFile method to FTP container
  • Added full file operations (upload, download, list, delete) to SSH container
  • Added full file operations (upload, download, list, delete) to Localstack/S3 container
  • All file operations handle nested directories automatically
  • Consistent API across all container types for file operations
  • Updated README with examples for all new methods

Details

File Operations

All three container types (FTP, SSH, and Localstack/S3) now support:

  • SaveFile: Upload files to the container
  • GetFile: Download files from the container
  • ListFiles: List files in a directory
  • DeleteFile: Remove files from the container

Directory paths are handled automatically - you can save files to nested paths without having to create the directories first.