I am using NTFS partition on linux machine. I want to identify hidden files and folders on my NTFS partition on linux using python.
How can I achieve this using python. Any code snippet / links would be appreciated.
Thanks.
|
I am using How can I achieve this using Thanks. |
||||
|
Assuming you are using ntfs-3g to mount your NTFS partitions on linux (this is default on most current linux distributions). You will need to read file extended attributes (see attr(5)), you can use pyxattr for this. NTFS attributes are stored in Here is a sample code to read and decode NTFS file system attributes and use them to filter files:
|
|||
|
|
|
There seems to be no python interface for NTFS attributes under linux. NTFS-3G supports NTFS file attributes and exposes them for the linux tools You can use python's Note: on my ubuntu system i had to install the package |
|||||||||||
|
|
By "Hidden" I'm assuming you mean filenames that start with a '.' by doing:
This should show all the files, including the hidden ones. |
|||
os.walk? – AndiDog Apr 14 '11 at 6:32