Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
497 views
in Technique[技术] by (71.8m points)

javascript - Write in a text file without overwriting in fs node js

How I can add text in my file but without overwriting the old text. I use the module fs (node js)

I tried this code but it doesn't work.

fs.writeFileSync("file.txt", 'Text', "UTF-8",{'flags': 'w+'});

any suggestion and Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Check the flags here: http://nodejs.org/api/fs.html#fs_fs_open_path_flags_mode_callback - you are currently using w+ which:

'w+' - Open file for reading and writing. The file is created (if it does not exist) or truncated (if it exists).

You should use a instead:

'a' - Open file for appending. The file is created if it does not exist.

'ax' - Like 'a' but opens the file in exclusive mode.

'a+' - Open file for reading and appending. The file is created if it does not exist.

'ax+' - Like 'a+' but opens the file in exclusive mode.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...