hi..
i want to read/write text file(c:\\data\\text.txt) in WRT widget.
how can i do this?
please help me..
hi..
i want to read/write text file(c:\\data\\text.txt) in WRT widget.
how can i do this?
please help me..
pease anybody tell me whether it is possible or not?
following code is not woeking. what is wrong? can i use ActiveXObject in WRT widget?
function WriteToFile(name,password)
{
var filename = "c:\\data.txt";
var fso = new ActiveXObject("Scripting.FileSystemObject");
file = fso.OpenTextFile(filename, true);
file.WriteLine(name);
file.WriteLine(password);
file.Close();
}
Hi kuddy_abc,
you can read local files by using API Bridge, or you could also try by using local Ajax calls.
http://wiki.forum.nokia.com/index.ph...I#File_Reading
About writing, there's no current API that provides this kind of funtionality, but you can implement and add it by yourself by using API Bridge itself.
Pit