]> git.pld-linux.org Git - projects/pld-ftp-admin.git/blame - modules/common.py
- I'm not sure if a non blocking socket can generate an exception on recv, but
[projects/pld-ftp-admin.git] / modules / common.py
CommitLineData
81e9387d
MM
1# vi: encoding=utf-8 ts=8 sts=4 sw=4 et
2
d9b3388c 3import os, sys, config
6ebc8df7 4
81e9387d
MM
5def fileexists(path):
6 if path[0]=='/':
7 fullpath=path
8 else:
9 fullpath=config.ftp_dir+path
e3aced8e 10 return os.path.exists(fullpath)
6ebc8df7
MM
11
12def checkdir(dir):
81e9387d
MM
13 if not fileexists(sys.argv[1]):
14 print config.value['ftp_dir']+'/'+sys.argv[1] + " does not exist"
15 sys.exit(1)
6ebc8df7 16
81e9387d
MM
17pldftpadmdir=os.environ['HOME']+'/pld-ftp-admin/'
18noarchcachedir=pldftpadmdir+'var/noarch-cache/'
151d31cc
MM
19tmpdir=pldftpadmdir+'var/tmp'
20
This page took 0.032285 seconds and 4 git commands to generate.