Skip to content
Advertisement

How to create a file inside a folder?

I have

JavaScript

and

JavaScript

when try to create res2.fcs file with following above path it shows gives me error, why it is not creating the folder structure?

code:

JavaScript

error:

JavaScript

Advertisement

Answer

you’re passing file path to .mkdir instead of folder, so you should first create a folder, and then write the file

(as you’re creating a folder that has the same name as the file, you should’ve got EISDIR error, instead of this one, which also says the file write didn’t work)

use path.dirname to extract folder and pass it to .mkdir:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement