123
123

Reputation: 51

Create file using Java script/jq and save it in user pc

I wanna do some thing like this: 1 - user insert a name 2 - after that i create a file white the user inserted name, and save file in user drive, like c drive. i need to do this using java script, but i have no idea about it, i saw some example about filesystem in Html5, but this approach, at the final, make u download the file, but i want to save this in a specified place by my self. can u give me some guide or some document about this filed? foe example i try this: http://www.noupe.com/design/html5-filesystem-api-create-files-store-locally-using-javascript-webkit.html but because i can't understood it.

Upvotes: 1

Views: 851

Answers (2)

123
123

Reputation: 51

OK, OK OK, tnk every body who came here and put there time to answer my question. finally after a week, yesterday, i went to have some talk with my professor, and he smiled at me, and say u can't find it, bcz js don't have this access and i just need to see my student research about some thing, some thing with false answer.

Upvotes: 0

php_nub_qq
php_nub_qq

Reputation: 16015

You can't access a user's file system. The best you can do is use localStorage for normal browsers or cookies.

Upvotes: 1

Related Questions