Just found out about this absolute genius piece of software.
Downloaded, tried, and yes ! That's a nice search tool.
I've quickly played with the rename tool too, seems nice, but I was asking myself if regexes could be of use here.
Example: My customers have lot of files like " something.pdf" where the file begins with a space ! (yes they do :s)
Of course, I need to remove the prepending space in order for the files to become "cloud worthy".
I also generally stumble upon a couple of files forbidden symbols (#, %...) depending on the cloud software used (nextcloud, onedrive...).
I'd love to be able to replace / delete those characters with simple regexes:
Example:
Code: Select all
REGEX .*\\(.*) SUBSTITUTION $1$2 would remove prepenting spaces from filenames
REGEX [~"#%&*<>?{|}] SUBSTITUTION (none) would remove all the given special characters from filename
Is there any chance Everything can do that kind of job ?
Best regards.