talraash

Untitled

Dec 1st, 2023 (edited)
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <%*
  2. const fs = require('fs');
  3.  
  4.  
  5. const filePath = 'path';
  6. const content = "Hello word!";
  7.  
  8. function app_add(filePath, content) {
  9. fs.appendFile(filePath, content, function(err) {
  10. if (err) {
  11. console.log(err);
  12. } else {
  13. console.log("All good...");
  14. }
  15. });
  16. }
  17. app_add(filePath, content)
  18. %>
Advertisement
Add Comment
Please, Sign In to add comment