Exemple #1
0
def islink(path):
  f = os_mock._findFileFromPath(path)
  return type(f) == os_mock.FakeSymlink
Exemple #2
0
def isdir(path):
  f = os_mock._findFileFromPath(path)
  return type(f) == os_mock.FakeDir
Exemple #3
0
def isfile(path):
  f = os_mock._findFileFromPath(path)
  return type(f) == os_mock.FakeFile