You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
293 B
11 lines
293 B
import os
|
|
import os.path
|
|
|
|
|
|
def cs_path_exists(fspath):
|
|
if not os.path.exists(fspath):
|
|
return False
|
|
# make absolute so we always have a directory
|
|
abspath = os.path.abspath(fspath)
|
|
directory, filename = os.path.split(abspath)
|
|
return filename in os.listdir(directory)
|