+ 2

I want to learn file handle can any body tell me about this? ??

27th Jun 2017, 1:13 PM
Vishal Singh
Vishal Singh - avatar
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...
27th Jun 2017, 1:25 PM
Don
Don - avatar
+ 2
thanks buddy
27th Jun 2017, 1:28 PM
Vishal Singh
Vishal Singh - avatar