I have
connection = Fog::Storage.new(fog_config)
bucket = connection.directories.get(bucket_name)
Is there a way (documented, non-documented, work-around) for me to create directories inside of this bucket? Something like:
sub_dir_for_user_1 = bucket.create_sub_dir('/user_1_files')
sub_dir_for_user_2 = bucket.create_sub_dir('/user_2_files')