ATLAS Offline Software
Loading...
Searching...
No Matches
dummyaccess.py
Go to the documentation of this file.
1# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2
3__doc__ = """Module with dummy utilities for files"""
4
5
6def listdir(dirname):
7 return []
8
9def exists(filename):
10 return True
11
12def getsize(filename):
13 return -1
14
15def getmtime(filename):
16 return 0
17
18def access(filename,mode):
19 return True
access(filename, mode)