Question
read server side file from clent side
Hello all,
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
i m using Influxis server.I have used these lines of code to create text file at server side:->
var myFile = new File("log_file.txt");
if(myFile.exists) myFile.open("text", "append");
else myFile.open("text", "create");
myFile.writeln("Hello world!");
above code is working fine but i want to download this "log_file.txt" file at client side.How can i do this?
Plese help me on this issue
