Zorya-NEO/mods/loader_removable_media/init.lua

10 lines
221 B
Lua

return function(filter)
filter = filter or function() return true end
return function()
for f in component.list("filesystem") do
if (filter(f) and component.invoke(f, "spaceTotal") ) then
end
end
end
end