S
S
srnsdlmtn2016-06-11 09:34:22
JavaScript
srnsdlmtn, 2016-06-11 09:34:22

Is it possible to somehow write to a specific location in a Node.js file?

Is it possible using fs.appendFile to append to a file in some specific place or, for example. between the necessary brackets, if there is, then tell me what it's called or give a link to read.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
#
#algooptimize #bottize, 2016-06-11
@srnsdlmtn

It is impossible to insert text, you can overwrite starting from a specific place.
If you need an insert inside the text, then you will have to overwrite everything starting from this place.

T
Timur Shemsedinov, 2016-06-11
@MarcusAurelius

fs.write(fd, data[, position[, encoding]], callback)

https://nodejs.org/api/fs.html#fs_fs_write_fd_data...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question