xeuc
Results
1
comments of
xeuc
The `fs.readFileSync()` function can **not** be used with a directory in parameter. `fs.readdirSync("D:\\Projects\\OGC\\assets\\Texture\\playingCards").forEach(file => {console.log(file);});` can be used to list all files in a directory or `fs.readFileSync("D:\\Projects\\OGC\\assets\\favicon.ico").forEach(byte => {console.log(byte);});` to...