You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I'm a beginner and I'm setting up a galp, I need to Del deleted all the files in the folder, but except for one folder that is located with these files.
-images (Home folder)
--photo.jpg
--photo.jpg
--photo.jpg
--icons (The folder you don't need to delete "images/icons")
How to write it down correctly? I have tried many options already and all in vain.
return del('app/images/*', { force: true })
The text was updated successfully, but these errors were encountered:
Note that glob patterns can only contain forward-slashes, not backward-slashes. Windows file paths can use backward-slashes as long as the path does not contain any glob-like characters, otherwise use path.posix.join() instead of path.join().
Hello! I'm a beginner and I'm setting up a galp, I need to Del deleted all the files in the folder, but except for one folder that is located with these files.
-images (Home folder)
--photo.jpg
--photo.jpg
--photo.jpg
--icons (The folder you don't need to delete "images/icons")
How to write it down correctly? I have tried many options already and all in vain.
return del('app/images/*', { force: true })
The text was updated successfully, but these errors were encountered: