Posts by Wander Pereira • 21 points
3 posts
-
-1
votes1
answer28
viewsQ: How to pass Form via URL
Hello, I’m new to React I have a Home Component that has a Form I would like to know how to get the inputs of this form and pass via get to another component: On routes I passed like this <Route…
-
-1
votes1
answer17
viewsQ: Filter files of the same date ? JS
Hello, I have an array with several objects I would like to know how to filter objects that have date equal to "02" for example: let arr = [ { name: "file0.xml", date: "02", size: "10823" }, { name:…
-
0
votes1
answer479
viewsQ: How to copy multiple files from one folder to another using Fs.copy
I wonder how I do to copy more than one file to another location (folder). Using the fs.Copyfilesync. In the example I can only copy one file: Example: fs.copyFileSync('C:/xmlpath/file.xml',…