Is it possible to cycle through rbxasset://sounds?

I want to cycle through the rbxasset://sounds or rbxasset://textures folders as if they were tables.
I’m also wondering if you could possibly read the mp3 meta-data from this.

image

I’m doubting this is possible but I haven’t found any solid answer or any way to try and do this that I can think of.

You have all of the sounds there inside of the character’s root.

for _, characterSound in ipairs(root:GetChildren()) do
	if root:IsA("Sound") then
		print(characterSound.SoundId)
	end
end

I’m still wanting to be able to cycle through the folder. If I wanted those sounds specifically I would have done that already

No. Sounds such as rbxasset://sounds/switch.wav aren’t in the character