Hi,<br>
I'd like to process files in a directory which is in fact a short cut link to another directory (under windows XP).<br>
If the path to the directory is for instance called c:\test. I have
tried both following code snipets for printing all names of files in
the directory:<br>
<br>
++ snippet 1++<br>
<br>
     for filename in glob.glob( os.path.join(r'c:\test', '*') ):<br>
         print filename <br>
<br>
++ snippet 2++<br>

<br>

     for filename in glob.glob( os.path.join(r'c:\test.lnk', '*') ):<br>

         print filename <br>
<br>
Neither solution works.<br>
Thanks very much for any help.<br>