Hello,
I downloaded a Sentinel-2A tile. The folder structure is shown below:

I want to open this images on my ArcGIS Pro notebook. I've tried with rasterio and gdal but it doesnt work. So, I tried with Raster() but it doesnt work either. I might be doing something wrong.
# images path
imagePath = r'C:\TEST\sentinel\S2A_MSIL2A_20220102T095411_N0301_R079_T33SVV_20220102T114458.SAFE\GRANULE\L2A_T33SVV_A034110_20220102T095409\IMG_DATA\R10m'
# open sentinel images
sentinel = [gdal.Open(imagePath) for img in imagePath]
sentinel
Thanks!