I got the "IE Fix" working, here's the code: ____________________________ path = r'c:\here\there\files\file.ext'
i=len(path) j=0 size=len(path) while i: i=i-1 if path[i]== '\\': j=i+1 break filename = path[j:size] print "FILENAME: %s" %(filename) _______________________________ Most importantly this works on my Zope webserver. Thanks again, mjakowlew -- http://mail.python.org/mailman/listinfo/python-list