I use 'Compare Against Previous Version…' and searched, where this
informations are saved.
Now I found a way to get the saved files.
They are logged in .DocumentRevisions-V100/db-V1/db.sqlite
My small bash-script: docRevisions.sh
-----------------------------
#!/bin bash
fileIn="/Volumes/$1/.DocumentRevisions-V100/db-V1/db.sqlite"
sudo cp $fileIn ~/db.sqlite
sqlite3 -separator $'\t' ~/db.sqlite "SELECT
datetime(g.generation_add_time, 'unixepoch', 'localtime') as datum,
f.file_name AS name, f.file_path AS path FROM files f, generations g WHERE
f.file_storage_id = g.generation_storage_id AND g.generation_add_time
>strftime('%s','2015-09-06 10:00:00') ORDER BY datum ASC;" | BBEdit
-----------------------------
the first parameter must be the name of the volume
sh /docRevisions.sh HD
will copy the DocumentRevision sqlite database to the users home.
Then open it with sqlite3 and send the query to BBEdit
You can add a filter for the path, with AND path like "%partofmypath%"
SELECT
datetime(g.generation_add_time, 'unixepoch', 'localtime') as datum,
f.file_name AS name,
f.file_path AS path,
FROM files f, generations g
WHERE f.file_storage_id = g.generation_storage_id AND g.generation_add_time
>strftime('%s','2015-08-20 05:00:00') AND path like "%/workspace%"
ORDER BY datum ASC;
Am Montag, 10. August 2015 02:03:23 UTC+2 schrieb Rich Siegel:
>
> On Sunday, August 9, 2015, obb <[email protected] <javascript:>> wrote:
>
> > Is there a log file with all the files which were opened or saved.
>
> There isn't. What problem are you trying to address?
>
> R.
> --
> Rich Siegel Bare Bones Software, Inc.
> <[email protected] <javascript:>> <
> http://www.barebones.com/>
>
> Someday I'll look back on all this and laugh... until they sedate me.
>
>
--
This is the BBEdit Talk public discussion group. If you have a
feature request or would like to report a problem, please email
"[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
---
You received this message because you are subscribed to the Google Groups
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].