Contents:
OpsEngine
import os [docs] class File: def __init__(self): pass [docs] def query(self, path): if os.path.exists(path): return 1 else: return 0 [docs] def bundle(self): pass