2 # Copyright Arvid Norberg 2008. Use, modification and distribution is
3 # subject to the Boost Software License, Version 1.0. (See accompanying
4 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 def list_directory(path
):
12 dirs
= i
[0].split('/')
13 if 'CVS' in dirs
: continue
14 if '.svn' in dirs
: continue
17 if file.startswith('.#'): continue
18 if file == '.DS_Store': continue
19 print os
.path
.join(i
[0], file) + ' \\'
21 list_directory(sys
.argv
[1])