2
# This file is part of Checkbox.
4
# Copyright 2008 Canonical Ltd.
6
# Checkbox is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
11
# Checkbox is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.
25
return path.split(os.path.sep)
27
def path_common(l1, l2, common=[]):
29
return (common, l1, l2)
32
return (common, l1, l2)
35
return (common, l1, l2)
37
return path_common(l1[1:], l2[1:], common + [l1[0]])
39
def path_relative(p1, p2):
40
(common, l1, l2) = path_common(path_split(p1), path_split(p2))
43
p = ["..%s" % os.path.sep * len(l1)]
46
return os.path.join( *p )
48
def path_expand(path):
49
path = os.path.expanduser(path)
52
def path_expand_recursive(path):
54
for path in path_expand(path):
55
if os.path.isdir(path):
56
for dirpath, dirnames, filenames in os.walk(path):
57
for filename in filenames:
58
paths.append(os.path.join(dirpath, filename))