選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

utils.py 293 B

1234567891011
  1. import os
  2. import os.path
  3. def cs_path_exists(fspath):
  4. if not os.path.exists(fspath):
  5. return False
  6. # make absolute so we always have a directory
  7. abspath = os.path.abspath(fspath)
  8. directory, filename = os.path.split(abspath)
  9. return filename in os.listdir(directory)