]> git.pld-linux.org Git - projects/pld-ftp-admin.git/blob - modules/common.py
87162df5e00948117c8bf2f6912cfe9278d84045
[projects/pld-ftp-admin.git] / modules / common.py
1 # vi: encoding=utf-8 ts=8 sts=4 sw=4 et
2
3 import os, sys, config
4
5 def fileexists(path):
6     if path[0]=='/':
7         fullpath=path
8     else:
9         fullpath=config.ftp_dir+path
10     return os.path.exists(fullpath)
11
12 def checkdir(dir):
13     if not fileexists(sys.argv[1]):
14         print config.value['ftp_dir']+'/'+sys.argv[1] + " does not exist"
15         sys.exit(1)
16
17 if 'HOME' in os.environ:
18     ftpadmdir=os.environ['HOME']+'/pld-ftp-admin/'
19 else:
20     ftpadmdir='../'
21 noarchcachedir=ftpadmdir+'var/noarch-cache/'
22 tmpdir=ftpadmdir+'var/tmp/'
23
This page took 0.045207 seconds and 2 git commands to generate.