Aahz wrote:
In article <[email protected]>, Rhodri James <[email protected]> wrote: ...sys.path.append("C:\\DataFileTypes")My preference: sys.path.append(r"C:\DataFileTypes") This doesn't work if you need to add a trailing backslash, though.
Also my preference (except, due to aging eyes and bad fonts, I prefer single quotes unless doubles are needed). I solve the trailing backslash problem as so: sys.path.append(r'C:\DataFileTypes' '\\') --Scott David Daniels [email protected] -- http://mail.python.org/mailman/listinfo/python-list
