Hi,<br><br>I am from the PyS60 (Python port on S60 platform) team. We
have ported the Python 2.5.4 core in the latest 1.9.x series of PyS60.<br><a href="http://wiki.opensource.nokia.com/projects/PyS60" target="_blank">http://wiki.opensource.nokia.com/projects/PyS60</a><br><br>Currently we have a problem with the mailbox module. Check the code snippet below, from the mailbox module.<br>


<br><i>def clean(self):<br>        &quot;&quot;&quot;Delete old files in &quot;tmp&quot;.&quot;&quot;&quot;<br>        now = time.time()<br>        for entry in os.listdir(os.path.join(self._</i><i>path, &#39;tmp&#39;)):<br>

            path = os.path.join(self._path, &#39;tmp&#39;, entry)<br>

            <span style="color: rgb(255, 0, 0);">if now - os.path.getatime(path) &gt; 129600:   # 60 * 60 * 36</span><br>                os.remove(path)</i><br><br>The code in red, tries to delete the files that are not accessed in the last 36 hours. Any idea as to how this is supposed to work on platforms that do not support access time, for example Symbian/S60 ? Any work around ?<br>
<br>- Mahesh<br>
<br><br>