Just started learning Python. How can i get a status of file's attributes in Python? I know that os.chmod(fullname, stat.S_IWRITE)
delete readonly attribute, but how can i get status without changing it? I need to get all of the attributes of "hidden"
, "system"
, "readonly"
, "archive"
Get file attributes (hidden, readonly, system, archive) in Python
13.4k Views Asked by Evgeny Gerbut At
4
There are 4 best solutions below
0

If you are using python 3.4+ you can use pathlib stat method.
from pathlib import Path
print(Path(r"D:\temp\test.txt").stat())
Output:
os.stat_result(
st_mode=33206,
st_ino=204632308068721491,
st_dev=67555953,
st_nlink=1,
st_uid=0,
st_gid=0,
st_size=4,
st_atime=1550757968,
st_mtime=1550757968,
st_ctime=1550757951
)
0

Since Python 3.5, os.stat()
, os.fstat()
and os.lstat()
returns a class os.stat_result
that, on Windows systems, includes st_file_attributes
. You can use the FILE_ATTRIBUTE_* constants in the stat
module to check the file attributes.
File attributes
>attrib test.txt
A R C:\test.txt
Sample code
import os
import stat
fn = "test.txt"
info = os.stat(fn)
print("Attributes of", fn)
if info.st_file_attributes & stat.FILE_ATTRIBUTE_ARCHIVE: print(" - archive")
if info.st_file_attributes & stat.FILE_ATTRIBUTE_SYSTEM: print(" - system")
if info.st_file_attributes & stat.FILE_ATTRIBUTE_HIDDEN: print(" - hidden")
if info.st_file_attributes & stat.FILE_ATTRIBUTE_READONLY: print(" - read only")
Output
Attributes of test.txt
- archive
- read only
you need to take a look at module
stat
andos.stat