Question

Is it possible to use this on a windows phone?

var fsObj = new ActiveXObject("Scripting.FileSystemObject");
var theFile = fsObj.CreateTextFile("c:\\giantco.txt", true);
theFile.WriteLine(theData);
theFile.Close();

I understand that there might not be a c:\ there - is there an alternative for both WP7 and iPhone?

Cheers!

Was it helpful?

Solution

No. ActiveX does not exist on WP7. You don't have direct access to the file system from either web browser.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top