Re: File attributes

2006-05-22 Thread Larry Bates
[EMAIL PROTECTED] wrote: > I know how to "walk" a folder/directory using Python, but I'd like to > check the archive bit for each file. Can anyone make suggestions on > how I might do this? Thanks. > You must have Mark Hammond's win32 package installed, then you can (barely tested): import win3

Re: File attributes

2006-05-22 Thread Ben Cartwright
Ben Cartwright wrote: > [EMAIL PROTECTED] wrote: > > I know how to "walk" a folder/directory using Python, but I'd like to > > check the archive bit for each file. Can anyone make suggestions on > > how I might do this? Thanks. > > > Since the archive bit is Windows-specific, your first place to

Re: File attributes

2006-05-22 Thread Ben Cartwright
[EMAIL PROTECTED] wrote: > I know how to "walk" a folder/directory using Python, but I'd like to > check the archive bit for each file. Can anyone make suggestions on > how I might do this? Thanks. Since the archive bit is Windows-specific, your first place to check is Mark Hammond's Python for