在Python中,mkdir -p
功能可以通过os.makedirs()
函数实现。os.makedirs()
函数可以创建多级目录,如果父目录不存在,它会自动创建。
示例代码:
import os
path = "parent/child/grandchild"
os.makedirs(path, exist_ok=True)
在这个示例中,parent/child/grandchild
目录将被创建。如果parent
或child
目录已经存在,os.makedirs()
函数将不会抛出异常。exist_ok
参数设置为True
表示如果目录已经存在,不会抛出异常。
推荐的腾讯云相关产品:
这些产品都可以与Python代码集成,以满足不同的应用场景。
领取专属 10元无门槛券
手把手带您无忧上云