Hi !<br><br>I need to get filelists from many HDD-s with more props. of files.<br>I used FindFilesW to get these informations.<br><br>But I have a problems with it.<br>When I used Find_Data tuple, and it's atime,ctime,mtime props, I get wrong result.
<br><br>I have hungarian Windows (XP), so little time diff. I have.<br><br>These method I use to get local time:<br><br>                    timeval=localtime(int(pytime))<br>                    pv=strftime('%Y.%m.%d %H:%M:%S',timeval)
<br><br>pytime is a PyTime object that I get from the tuple.<br><br>When I use it, it is shows 2 hours lesser than normal file time (Total Commander, File explorer).<br>Example: it shows 18:54, but I have 20:54.<br><br>When I modify the getting proc the time informations to:
<br><br><div style="margin-left: 80px;">pytime=localtime(os.path.getctime(afile))<br></div><br>I get good result. What I do wrong ? Please help me:<br><br>dd<br>