Search found 1712 matches

by DigitalVolcano
Fri Nov 08, 2013 5:38 pm
Forum: Duplicate Cleaner support
Topic: "Don't scan against self" issue in 3.2.x
Replies: 6
Views: 11378

Re: "Don't scan against self" issue in 3.2.x

Thanks, I'll re-test it in image mode.
by DigitalVolcano
Fri Nov 08, 2013 3:07 pm
Forum: Duplicate Cleaner support
Topic: Not declaring these files as the same
Replies: 11
Views: 20102

Re: Not declaring these files as the same

The hard link is generally created against the first file it finds in that group. If you want to steer it towards linking to a particular version, the safest thing to do is to drop the one you don't want linking from the group first (right click, drop selected from list). Or you can rename the track...
by DigitalVolcano
Thu Nov 07, 2013 10:46 am
Forum: Duplicate Cleaner support
Topic: Windows 98SE?
Replies: 2
Views: 6930

Re: Windows 98SE?

I've been trying 1.4.7 but it seems to have problems with the MD5 library file (It'll run in other modes though).
http://www.digitalvolcano.co.uk/downloa ... _final.exe

If you can get .NET Framework to install on 98 you might get a newer version to run.
by DigitalVolcano
Wed Nov 06, 2013 11:42 am
Forum: Duplicate Cleaner support
Topic: "Don't scan against self" issue in 3.2.x
Replies: 6
Views: 11378

Re: "Don't scan against self" issue in 3.2.x

This works fine for me - I get the three files when 'don't scan' is set to folder B.
Is it possible for you to tell me the exact file/folder structure causing the problem? Are there other files in there?

thanks!
by DigitalVolcano
Wed Nov 06, 2013 11:21 am
Forum: Duplicate Cleaner support
Topic: Non-Duplicate Files/Folders
Replies: 1
Views: 5168

Re: Non-Duplicate Files/Folders

Hi,
Not in the current version, but a unique file tab is slated for version 4.0.
by DigitalVolcano
Fri Nov 01, 2013 2:32 pm
Forum: TextCrawler - General
Topic: Adding Text to the End of a Line - Not Simple :)
Replies: 4
Views: 14631

Re: Adding Text to the End of a Line - Not Simple :)

If it is on every occurrence you could just replace the /r/n with the >

regex: (-ExecutionPolicy ByPass.*)>
rep: $1 defer="Y">


Or if it just happens in some places you could do a second pass with:

search: > defer="Y"
replace: defer="Y">
by DigitalVolcano
Fri Nov 01, 2013 10:32 am
Forum: Duplicate Cleaner support
Topic: Error in Scan Process: Illegal character in path
Replies: 8
Views: 19170

Re: Error in Scan Process: Illegal character in path

Sorry you are having trouble. Is the drive you are scanning a share from Linux, or a NAS drive? It might have a character illegal in Windows (but allowed in Linux) such as < > or ?.

That said, it shouldn't quit the scan when it hits this. I've raised a bug report to get this fixed. Thanks!
by DigitalVolcano
Fri Nov 01, 2013 10:24 am
Forum: Regular Expressions Help
Topic: Adding Text the the End of a Line
Replies: 1
Views: 10559

Re: Adding Text the the End of a Line

Try this -

Code: Select all

RegEx:
(-ExecutionPolicy ByPass.*)\r\n

Replace:
$1 defer="Y"\r\n
Try a file in the tester first! This will change every 'ExecutionPolicy ByPass' line, and assumes that your files use CRLF line endings.
by DigitalVolcano
Fri Nov 01, 2013 10:23 am
Forum: TextCrawler - General
Topic: Adding Text to the End of a Line - Not Simple :)
Replies: 4
Views: 14631

Re: Adding Text to the End of a Line - Not Simple :)

Try this -

Code: Select all

RegEx:
(-ExecutionPolicy ByPass.*)\r\n

Replace:
$1 defer="Y"\r\n
Try a file in the tester first! This will change every 'ExecutionPolicy ByPass' line, and assumes that your files use CRLF line endings.
by DigitalVolcano
Fri Nov 01, 2013 10:04 am
Forum: TextCrawler - General
Topic: How to replace only part of a regular expression??
Replies: 2
Views: 10417

Re: How to replace only part of a regular expression??

Try this: RegEx: \. ([a-z]) Replace: , $1 The brackets create a 'capturing group', the contents of which can be deployed in the replacement using the $1 expression (ie 1st capturing group). Ensure that the 'Case Sensitive' option is on too, so it doesn't capture legitimate full stops. Hope this helps!