Re: Obtaining the attributes and properties of a folder recursively.

2009-03-23 Thread Tim Golden
venutaurus...@gmail.com wrote: On Mar 21, 3:05 pm, Tim Golden m...@timgolden.me.uk wrote: venutaurus...@gmail.com wrote: Thank you Sir for your reply. It is working for me. But is failing if I have Unicode characters in my path. I tried giving a 'u' in front of the path but still it fails at

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-22 Thread venutaurus...@gmail.com
On Mar 21, 3:05 pm, Tim Golden m...@timgolden.me.uk wrote: venutaurus...@gmail.com wrote: Thank you Sir for your reply. It is working for me. But is failing if I have Unicode characters in my path. I tried giving a 'u' in front of the path but still it fails at f.createdat. Does it support

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-21 Thread Tim Golden
venutaurus...@gmail.com wrote: On Mar 20, 6:58 pm, Tim Golden m...@timgolden.me.uk wrote: venutaurus...@gmail.com wrote: Thank you for your suggestion but.. I'll have around 1000 such files in the whole directory and it becomes hard to manage such output because again I've to take this

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-21 Thread Tim Golden
venutaurus...@gmail.com wrote: Thank you Sir for your reply. It is working for me. But is failing if I have Unicode characters in my path. I tried giving a 'u' in front of the path but still it fails at f.createdat. Does it support Unicode Characters? This the traceback which I got while

Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread venutaurus...@gmail.com
Hello all, Is there any way to list out all the properties (name, type, size) and attributes( Accesstime, mod time, archived or readonly etc) of a folder and its contents recursively. Should I need ot go inside each and every directory to list them? This has to be for Windows.

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tino Wildenhain
venutaurus...@gmail.com wrote: Hello all, Is there any way to list out all the properties (name, type, size) and attributes( Accesstime, mod time, archived or readonly etc) of a folder and its contents recursively. Should I need ot go inside each and every directory to list them?

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread venutaurus...@gmail.com
On Mar 20, 1:58 pm, Tino Wildenhain t...@wildenhain.de wrote: venutaurus...@gmail.com wrote: Hello all,             Is there any way to list out all the properties (name, type, size) and attributes( Accesstime, mod time, archived or readonly etc) of a folder and its contents recursively.

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tim Golden
venutaurus...@gmail.com wrote: Hello all, Is there any way to list out all the properties (name, type, size) and attributes( Accesstime, mod time, archived or readonly etc) of a folder and its contents recursively. Should I need ot go inside each and every directory to list them?

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tino Wildenhain
Tim Golden wrote: ... and do the following: code from winsys import fs for f in fs.flat (c:/temp): f.dump () ^ eeek! But btw, what extra information would it give? Regards Tino smime.p7s Description: S/MIME Cryptographic Signature --

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tino Wildenhain
venutaurus...@gmail.com wrote: On Mar 20, 1:58 pm, Tino Wildenhain t...@wildenhain.de wrote: venutaurus...@gmail.com wrote: Hello all, ... smime.p7s 4KViewDownload Thanks for your suggestion. By the way the attachment which have added has some unknown file extension. May I know how can I

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tim Golden
Tino Wildenhain wrote: Tim Golden wrote: ... and do the following: code from winsys import fs for f in fs.flat (c:/temp): f.dump () ^ eeek! Was the k! for the space before the bracket (which, for some unaccountable reason disturbs some people)? Or for the idea of dumping data

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread venutaurus...@gmail.com
On Mar 20, 5:09 pm, Tim Golden m...@timgolden.me.uk wrote: Tino Wildenhain wrote: Tim Golden wrote: ... and do the following: code from winsys import fs for f in fs.flat (c:/temp):  f.dump ()          ^ eeek! Was the k! for the space before the bracket (which, for some

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread Tim Golden
venutaurus...@gmail.com wrote: Thank you for your suggestion but.. I'll have around 1000 such files in the whole directory and it becomes hard to manage such output because again I've to take this snapshot before backing up the data and have to do the same and compare both when the data gets

Re: Obtaining the attributes and properties of a folder recursively.

2009-03-20 Thread venutaurus...@gmail.com
On Mar 20, 6:58 pm, Tim Golden m...@timgolden.me.uk wrote: venutaurus...@gmail.com wrote: Thank you for your suggestion but.. I'll have around 1000 such files in the whole directory and it becomes hard to manage such output because again I've to take this snapshot before backing up the data