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