Creating directory inside gcs bucket using Streamlit FilesConnection

Hello, using Connect Streamlit to Google Cloud Storage - Streamlit Docs, I am able to read/write files into GCS bucket.
However I am looking for a way to create folders inside the bucket.

I tried with this but it doesn’t work:
conn.fs.mkdir(f"gcs://my-bucket/TEST")

Any idea if I can create directory using Streamlit FilesConnection?

Immediately after posting this, I tried creating file with the directory name that I need and it created the directory automatically (along with the file)
I think this should work for me.