Amazon S3 Creating Folder through .NET SDK vs through Management Console

Just refactored above codes to on async method with version 2 of AWS .Net SDK:

public async Task CreateFoldersAsync(string bucketName, string path)
    {
        path = path.EnsureEndsWith('/');

        IAmazonS3 client =
            new AmazonS3Client(YOUR.AccessKeyId, YOUR.SecretAccessKey,
            RegionEndpoint.EUWest1);

        var findFolderRequest = new ListObjectsV2Request();
        findFolderRequest.BucketName = bucketName;
        findFolderRequest.Prefix = path;
        findFolderRequest.MaxKeys = 1;

        ListObjectsV2Response findFolderResponse = 
           await client.ListObjectsV2Async(findFolderRequest);


        if (findFolderResponse.S3Objects.Any())
        {
            return;
        }
        
        PutObjectRequest request = new PutObjectRequest()
        {
            BucketName = bucketName,
            StorageClass = S3StorageClass.Standard,
            ServerSideEncryptionMethod = ServerSideEncryptionMethod.None,
            Key = path, 
            ContentBody = string.Empty
        };

        // add try catch in case you have exceptions shield/handling here 
        PutObjectResponse response = await client.PutObjectAsync(request);
    }

Your code actually works for me, but there are a few things you need to be aware off.

As I understand it, Amazon S3 does not have a concept of folders, but individual clients may display the S3 objects as if they did. So if you create an object called A/B , then the client may display it as if it was an object called B inside a folder called A. This is intuitive and seems to have become a standard, but simulating an empty folder does not appear to have a standard.

For example, I used your method to create a folder called Test, then actually end up creating an object called Test/. But I created a folder called Test2 in AWS Explorer (ie the addon to Visual Studio) and it ended up creating an object called Test2/Test2_$folder$ (AWS Explorer will display both Test and Test2 as folders)

Once of the things that this means is that you don't need to create the 'folder' before you can use it, which may mean that you don't need a DoesFolderExist method.

As I mention I tried your code and it works and finds the Test folder it created, but the key had to be tweaked to find the folder created by AWS Explorer , ie

DoesFolderExist("Test/"               , bucketName);  // Returns true
DoesFolderExist("Test2/"              , bucketName);  // Returns false
DoesFolderExist("Test2/Test2_$folder$", bucketName);  // Returns true

So if you do still want to have a DoesFolderExist method, then it might be safer to just look for any objects that start with folderName + "/" , ie something like

ListObjectsRequest request = new ListObjectsRequest();
request.BucketName = bucketName ;
request.WithPrefix(folderName + "/");
request.MaxKeys = 1;

using (ListObjectsResponse response = m_S3Client.ListObjects(request))
{
    return (response.S3Objects.Count > 0);
}