function CopyFile(src, dst) local src_file, err = io.open(src,"r") if (not src_file) then return false, err end local content = src_file:read("*a") ...
確定! 回上一頁