vote up 1 vote down star

I am currently developing an application in python 3 and i need to be able to hide certain files from the view of people. i found a few places that used the win32api and win32con but they don't seem to exist in python 3.

Does anyone know if this is possible without rolling back or writing my own attribute library in C++

flag

2 Answers

vote up 4 vote down check

You need the pywin32 Python Extensions for Windows. Recently released for Python 3.

link|flag
vote up 3 vote down

You can use ctypes to directly access functions from kernel32.dll.

The function you're looking for is windll.kernel32.SetFileAttributesA

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.