Tagged Questions

18
votes
12answers
33k views

How to read and write into file using JavaScript

can anybody give the sample code to read and write the into file using JavaScript?
2
votes
4answers
212 views

Get a list of removable drives with javascript?

My situation is this: I want to have a pop-up box open from your browser via JavaScript then I want the pop-up box to display all removable devices it can see attached to your computer, then you will ...
1
vote
1answer
76 views

How to use FileSystem API to debug Javascript? The execution order problem

I was debugging a complicated program written in Javascript. I need to watch the change of a large matrix. It is not convenient to see each elements in the matrix using Chrome Inspect Element. So, I ...
1
vote
2answers
386 views

Walking a directory with Node.js

I've got a problem with this code in node.js. I want to recursively walk through a directory tree and apply the callback action to every file in the tree. This is my code at the moment: var fs = ...
0
votes
0answers
62 views

HTML5 FS API: Let the user create files outside of the sandbox?

Is there a way to create a file outside of the sandbox? Maybe something that works by first storing the file inside the sandbox and then letting the user drag a link to the locally stored file into a ...
0
votes
1answer
266 views

URL works when pasted/entered in IE9 address bar, but not in href or window.open

Context: this is part of an INTRANET system, requiring basic authentication and running off an internally facing server accessible only within our work domain. So, the situation is that IE9 will ...
0
votes
0answers
192 views

Get file names from a local directory with javascript

I've spent a fair amount of time researching this. If the answer is out there, I've missed it. I know that accessing the local file system from the browser is (and should be) tightly controlled. ...