An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
Hello @Smruti Prava Sahu ,
Welcome to the MS Q&A platform.
You can use dbutils to create the folders in gen2
You will need to mount the storage first and then create folders using dbutils.fs.mkdirs
dbutils.fs.mount( source = 'wasbs://<containername>@<gen2>.blob.core.windows.net/', mount_point = '/mnt/yourpath', extra_configs = {'fs.azure.account.key.<gen2>.blob.core.windows.net':'Accountkey'})
dbutils.fs.mkdirs("/mnt/<mountName>path/folderName")
(or)
dbutils.fs.mkdirs("dbfs:/mnt/<mountName>path/folderName")
I hope this helps. Please let me know if you have any further questions.