Adding AWS S3 Bucket extension

Hello again,

Simple question as the subject suggests - Is it possible to add the AWS S3 Bucket extensions to ASP.NET Maker 2019?

Kind regards,
Alex

Technically it is possible, it seems that it has been reserved because ASP.NET Maker uses Func/Action for file operations, e.g.

// File copy
public static Action<string, string, bool> FileCopy { get; set; } = File.Copy;

Therefore, if you set the Func/Action as your own Func/Action which can handle S3 paths, it might work. But of course, you need to write a bunch of code. You may want to post to Feature Request forum, hoping they will implement in future version: https://www.hkvforums.com/viewforum.php?f=8.

Thanks!