I need help on a regexp. I am copying files and would like to have a "exclude"-filter. So, I have a filepath:
c:\myfiles\myfile.txt
and the filter in a normal file mask filter:
*.*
or:
*.txt
or a file:
anotherfile.txt
I want to now which file paths that are matching this filter with the help of a regexp. It would be great if I could to the regexp on the whole path (I think that may be faster than converting the path to a filename, please correct me).
Thank you.
c:\myfiles\myfile.txt
and the filter in a normal file mask filter:
*.*
or:
*.txt
or a file:
anotherfile.txt
I want to now which file paths that are matching this filter with the help of a regexp. It would be great if I could to the regexp on the whole path (I think that may be faster than converting the path to a filename, please correct me).
Thank you.