python新建文件夹

创建路径为path的文件夹(path应该包括新建文件夹名字)

 def mkdir(path):
 		import os
 		#function:新建文件夹
        #path:str-从程序文件夹要要创建的目录路径(包含新建文件夹名)
        #去除首尾空格
        path=path.strip()   #strip方法只要含有该字符就会去除
        #去除首尾\符号
        path=path.rstrip('\\')
        #判断路径是否存在
        isExists = os.path.exists(path)
        
        #根据需要是否显示当前程序运行文件夹
        #print("当前程序所在位置为:"+os.getcwd()) 
        
        if not isExists:
            os.makedirs(path)
            print(path+'创建成功')
            return True
        else:
            print(path+'目录已存在')
            return False        

你可能感兴趣的:(python,文件分类,文件处理)