Package gluon :: Module fileutils
[hide private]
[frames] | no frames]

Module fileutils

source code

This file is part of web2py Web Framework (Copyrighted, 2007) Developed by Massimo Di Pierro <mdipierro@cs.depaul.edu> License: GPL v2

Functions [hide private]
 
listdir(path, expression='^.+$', drop=True, add_dirs=False)
like os.listdir() but you can specify a regex patter to filter filed.
source code
 
cleanpath(path)
turns any expression/path into a valid filename.
source code
 
_extractall(filename, path='.', members=None) source code
 
tar(file, dir, expression='^.+$')
tars dir into file, only tars file that match expression
source code
 
untar(file, dir)
untar file into dir
source code
 
tar_compiled(file, dir, expression='^.+$')
used to tar a compiled application.
source code
 
get_session(request, other_application='admin')
checks that user is authorized to access other_application
source code
 
check_credentials(request, other_application='admin')
checks that user is authorized to access other_application
source code
 
fix_newlines(path) source code
 
copystream(src, dest, size, chunk_size=100000)
this is here because I think there is a bug in shutil.copyfileobj
source code
Function Details [hide private]

listdir(path, expression='^.+$', drop=True, add_dirs=False)

source code 

like os.listdir() but you can specify a regex patter to filter filed. if add_dirs==True the returned items will have the full path.

cleanpath(path)

source code 

turns any expression/path into a valid filename. replaces / with _ and removes special characters.

tar_compiled(file, dir, expression='^.+$')

source code 

used to tar a compiled application. the content of models, views, controllers is not stored in the tar file.