momobear wrote:
>> Will look into NTFS change journals when I get some spare time.
> How can we get NTFS change journals? Is there any API for this purpose
> or we could implement our own?
> there're an api in windows help us montior file changes.
> win32file.ReadDirectoryChangesW
Don't know what
> Will look into NTFS change journals when I get some spare time.
How can we get NTFS change journals? Is there any API for this purpose
or we could implement our own?
there're an api in windows help us montior file changes.
win32file.ReadDirectoryChangesW
--
http://mail.python.org/mailman/list
On Apr 7, 8:02 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> Adam wrote:
> > On Apr 7, 5:09 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> > > Adam wrote:
> > > > I want to know if it possible to tell when a file is opened. However I
> > > > don't want it to be the last access time. I want to k
Adam wrote:
> On Apr 7, 5:09 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> > Adam wrote:
> > > I want to know if it possible to tell when a file is opened. However I
> > > don't want it to be the last access time. I want to know how many
> > > times a file opened so I can generate statistics of fi
On Apr 7, 5:09 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> Adam wrote:
> > I want to know if it possible to tell when a file is opened. However I
> > don't want it to be the last access time. I want to know how many
> > times a file opened so I can generate statistics of file usage.
>
> > I will be
"Adam" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| Hello,
|
| I want to know if it possible to tell when a file is opened.
Just by Python? (Hack the file and open and possibly os.open code)
or by any program? (Hack the OS -- good luck!)
--
http://mail.python.org/mailman/lis
Adam wrote:
> I want to know if it possible to tell when a file is opened. However I
> don't want it to be the last access time. I want to know how many
> times a file opened so I can generate statistics of file usage.
>
> I will be wanting to watch all files on a server so this will be on
> quite
Hello,
I want to know if it possible to tell when a file is opened. However I
don't want it to be the last access time. I want to know how many
times a file opened so I can generate statistics of file usage.
I will be wanting to watch all files on a server so this will be on
quite a large scale.