Welcome to the Mythicsoft Q&A site for:

- Agent Ransack
- FileLocator Lite
- FileLocator Pro

Please feel free to ask any questions on these products or even answer other community member questions.

Useful Links:

- Contact Us
- Help Manuals
- Mythicsoft Home
0 votes

Hello

I'm currently in the process of writing a python wrapper class for the CLI of Agent Ransack (great tool btw, have indoctrinated many colleagues into it's use ;)).

One problem I'm finding is when I parse the output file, different versions of Agent Ransack produce different formatting for the file information line.

e.g

E:\Dropbox\9 xxx xxx\xxx - Building Survey.pdf 1,914.00 KB 30/03/2015 19:39:33

What would be great is a sample of the file information line from the last few versions of AR, I could then read the version of the executable and map it to a regex.

Thanks

Dave

by (20 points)
Which versions are you looking at. The two big recent releases are 2010 and 2014, are you interested in prior to that?

1 Answer

0 votes

The columns used for the CSV format.

Agent Ransack 2014

Path | FileName | Size | Type | ModDate | CreateDate | LastAccDate | Hits

Agent Ransack 2010 and Earlier

Path | FileName | Size | ModDate
by (30.3k points)
Actually after looking again, the version I have at home (5.0.0.762) has a doesn't have the 'hits' column that my version at work does (not sure of the version, but it's definitely newer).
Ah, yes how did I miss that. Hits has been added. 5.0.0.762 is AR 2010.
...