makedirs.py 112 B

1234567
  1. import os.path
  2. import os
  3. def makedirs( path ):
  4. if not os.path.exists( path ):
  5. os.makedirs( path )
粤ICP备19079148号