On Mon, May 6, 2013 at 11:01 PM, Jay McHugh <[email protected]> wrote:
> ...So, to try to figure out where my data really is - what property (or
> properties) should I look for in the configuration XML files?...

Here's two unixish command-line tricks that can also help finding that out:

a) Use lsof, dtrace or a similar utility to see what files the process
that you're running is accessing

b) Use this pattern to find which files change under some_folder:

  touch /tmp/ts
  ...run the software for a bit
  find some_folder -newer /tmp/ts

-Bertrand

Reply via email to