Please someone give me a code to create a text file in hard drive
Result should be a html file, when double click html file it need to create a text fil
Javascript in a regular HTML page in a browser is not allowed direct access to a path of your choice on the hard disk for security reasons.
The, somewhat experimental, FileSystem APIs in newer browsers offering some capabilities to a sandboxed file system, but you will have to see if your need can be satisfied with those APIs.
Other than that, you would need some way around the security limitations such as doing it from a browser plug-in that the viewer has authorized and installed.