network.download( url, "GET", function(e) if (e.isError == false) then print("Download Successful") local m = require ("MyModule.lua") end end, "MyModule.lua", system.TemporaryDirectory )
Obviously, this doesn’t work because I’m unable to correctly navigate to the directory where the file was downloaded. and this doesn’t work:
equire ("system.TemporaryDirectory.MyModule.lua")
What should I do here?