This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Python and file attributes


On Jul 28 18:12, Steven Penny wrote:
> The Windows version of Python can access file attributes:
> 
>    >>> import os
>    >>> os.stat('C:\Recovery').st_file_attributes
>    8214
> 
> https://docs.python.org/library/os#os.stat_result.st_file_attributes
> 
> However the Cygwin version cannot:
> 
>    >>> import os
>    >>> os.stat('C:\Recovery').st_file_attributes
>    Traceback (most recent call last):
>    File "<stdin>", line 1, in <module>
>    AttributeError: 'os.stat_result' object has no attribute
>    'st_file_attributes'
> 
> This is unexpected as other Cygwin tools can access this information:
> 
>    $ lsattr
>    -hs------n-- ./Recovery

No, it's not unexpected.  Attributes are new since Cygwin 3.0 so this
would have required a python rebuild. The Cygwin utilities lsattr/chattr
are very likely the *only* tools being able to access these attributes
at this time.


Corinna

-- 
Corinna Vinschen
Cygwin Maintainer

Attachment: signature.asc
Description: PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]