--创建名字为123的文件夹os.execute("md 123")--创建名字为123.txt 内容为456的文件local file = io.open("123.txt","w")file:write("456")file:close()