Is it possible to delete files using WebDav by file name pattern?
For example, I want delete all files with prefix hello (hello_*
)
Is it possible to delete files using WebDav by file name pattern?
For example, I want delete all files with prefix hello (hello_*
)
Read this:
JScript supports regular expressions, so YES, it is possible.
No, it's not possible. All you can do is retrieve all names, find the ones you want to delete, and submit a DELETE request for each one of them.