Re: [PythonCE] How to determine special folder location

2010-03-29 Thread Adam Walley
Nice work. I will definitely make a note of that one. Thanks rodi. Adam. On 29 March 2010 23:02, rodi wrote: > Hello PytonCE users, > > have solved the question. The appropriate function > is 'SHGetSpecialFolderPath': see > http://msdn.microsoft.com/en-us/library/aa931257.aspx > > May be this

Re: [PythonCE] How to determine special folder location

2010-03-29 Thread rodi
Hello PytonCE users, have solved the question. The appropriate function is 'SHGetSpecialFolderPath': see http://msdn.microsoft.com/en-us/library/aa931257.aspx May be this info and the follwing code snippet is helpfull to others :) import ctypes from time import sleep HANDLE = ctypes.c_ulong HW