var url ='./helloworld/bla/bla/bla.txt' ;
fs.writeFile(url, 'Hello World!', function (err) {
if (err) return console.log(err);
console.log('Hello World > helloworld.txt');
});