+ 2
I want to learn file handle can any body tell me about this? ??
2 odpowiedzi
+ 2
Depends on the language. Each should have a module dedicated of some kind to allow the manipulation of files. If you're using JavaScript then you're going to have to install node. It's a runtime environment outside of the browser. https://nodejs.org/en/
const fs = require(fs);
If you're using Python then you'll just use the reserved keyword "open" to create a file object.
file = open("dummy.txt")
To reiterate, it depends on the language. All have a way to manipulate files though...
+ 2
thanks buddy