Search found 1717 matches

by DigitalVolcano
Sat May 02, 2015 7:46 pm
Forum: Duplicate Cleaner support
Topic: Internet access during deletion?
Replies: 1
Views: 4823

Re: Internet access during deletion?

No, it doesn't use the internet for anything except checking for updates on start up (if enabled)
by DigitalVolcano
Thu Apr 30, 2015 4:33 pm
Forum: Regular Expressions Help
Topic: need to delete 50 linefeeds in a row..
Replies: 4
Views: 17731

Re: need to delete 50 linefeeds in a row..

Try this:

RegEx

Code: Select all

(\r\n){20,}
Replace:

Code: Select all

\r\n
The 20 is the minimum number of blank lines (-1) before it is removed. This assumes CRLF line endings - you may have to change it to just \n for LF endings.
by DigitalVolcano
Thu Apr 30, 2015 11:33 am
Forum: Regular Expressions Help
Topic: need to delete 50 linefeeds in a row..
Replies: 4
Views: 17731

Re: need to delete 50 linefeeds in a row..

There's a Regular Expression in the TextCrawler library called 'Find/Strip Whitespace' - this may do the job (back up first though)!
by DigitalVolcano
Thu Apr 30, 2015 11:32 am
Forum: Duplicate Cleaner support
Topic: Deleting files on NAS very slow
Replies: 2
Views: 16042

Re: Deleting files on NAS very slow

The deletion speed (esp. on NAS) is something we are trying hard to improve for the next version. I'm not sure about the Synology MTU issue, but that does sound like a very long time for a thousand files! Hopefully they fix it soon. Is renaming them any faster? You could rename with the suffix "...
by DigitalVolcano
Thu Apr 30, 2015 11:20 am
Forum: Duplicate Cleaner support
Topic: Importing Folder List
Replies: 3
Views: 7836

Re: Importing Folder List

Ah, I see now

The duplicate folder list is for export only - you can't re-import it back. The import option is only for the duplicate files list.

It needs a better error message adding.
by DigitalVolcano
Wed Apr 29, 2015 3:15 pm
Forum: TextCrawler - General
Topic: Removal of Blank Lines
Replies: 2
Views: 16385

Re: Removal of Blank Lines

To use

Code: Select all

^\r\n
you need the option 'Multi line anchors' enabled.

Also, this assumes you don't just have \r or \n line endings!
by DigitalVolcano
Mon Apr 27, 2015 10:44 am
Forum: Duplicate Cleaner support
Topic: Importing Folder List
Replies: 3
Views: 7836

Re: Importing Folder List

Did you re-export the CSV file from excel using quotation marks around the fields? Not having those could cause issues. It needs to be in exactly the same format, with the same columns for the import to work.
by DigitalVolcano
Mon Apr 27, 2015 10:42 am
Forum: Duplicate Cleaner support
Topic: Is it possible to save audio hashes?
Replies: 3
Views: 8896

Re: Is it possible to save audio hashes?

Not currently possible I'm afraid, but this hash caching functionality is on the development list for version 4.

Thanks
James
by DigitalVolcano
Wed Apr 22, 2015 10:24 am
Forum: Duplicate Cleaner support
Topic: select by location
Replies: 1
Views: 5721

Re: select by location

Yes, it currently doesn't have an effect on this operation. This behavior is slated to be improved.
by DigitalVolcano
Tue Apr 21, 2015 11:10 am
Forum: TextCrawler - General
Topic: Search and Insert
Replies: 1
Views: 9815

Re: Search and Insert

You can use regular expressions - Standard replace doesn't support wildcards.

RegEx:

Code: Select all

(G87.*$)
Replace:

Code: Select all

$1\r\nM32
Options:
Multi-line Anchors

Try it in the reg-ex tester. Remember to back up before replacing!