diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-08-11 13:06:32 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-08-11 13:06:32 +0000 |
| commit | 9cc89c97b9fd238254b11054583b5ec80f6a2fd9 (patch) | |
| tree | 4d1a50f21576ff6d2d0674c70118bab2131132c2 | |
| parent | 40598612d184968722c7b1abda183dbd4cb758c2 (diff) | |
Added file accidentally ommitted from [11354].
git-svn-id: http://code.djangoproject.com/svn/django/branches/0.96-bugfixes@11430 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/utils/_os.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/django/utils/_os.py b/django/utils/_os.py new file mode 100644 index 0000000000..2bb8fc31a7 --- /dev/null +++ b/django/utils/_os.py @@ -0,0 +1,28 @@ +""" +A back-ported version of the same module from the 1.0.x branch, without the +unicode support. +""" + +from os.path import join, normcase, abspath, sep + +def safe_join(base, *paths): + """ + Joins one or more path components to the base path component intelligently. + Returns a normalized, absolute version of the final path. + + The final path must be located inside of the base path component (otherwise + a ValueError is raised). + """ + # We need to use normcase to ensure we don't false-negative on case + # insensitive operating systems (like Windows). + final_path = normcase(abspath(join(base, *paths))) + base_path = normcase(abspath(base)) + base_path_len = len(base_path) + # Ensure final_path starts with base_path and that the next character after + # the final path is os.sep (or nothing, in which case final_path must be + # equal to base_path). + if not final_path.startswith(base_path) \ + or final_path[base_path_len:base_path_len+1] not in ('', sep): + raise ValueError('the joined path is located outside of the base path' + ' component') + return final_path |
