Tom Anderson wrote: > Java has a java.io.File.getCanonicalPath method that does this, but i > can't find an equivalent in python - is there one? What's wrong with: os.path.normcase(path) ? --Scott David Daniels scott.daniels at acm.org