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