public void RenameFile(string oldPath, string newPath)
        {
            oldPath = CleanPath(oldPath);
            newPath = CleanPath(newPath);
            var file = new S3FileInfo(_client, _amazonS3StorageConfiguration.AWSFileBucket, oldPath);

            file.MoveToLocal(newPath);
        }