Python3 os.mkdir() 方法
Python 3 教程
· 2019-02-07 15:43:46
概述
os.mkdir() 方法用于以数字权限模式创建目录。默认的模式为 0777 (八进制)。
语法
mkdir()方法语法格式如下:
os.mkdir(path[, mode])
参数
path -- 要创建的目录
mode -- 要为目录设置的权限数字模式
返回值
该方法没有返回值。
实例
以下实例演示了 mkdir() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 创建的目录 path = "/tmp/home/monthly/daily/hourly" os.mkdir( path, 0755 ) print ("目录已创建")
执行以上程序输出结果为:
目录已创建
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html
The Definitive Guide to MongoDB
Peter Membrey、Wouter Thielen / Apress / 2010-08-26 / USD 44.99
MongoDB, a cross-platform NoSQL database, is the fastest-growing new database in the world. MongoDB provides a rich document orientated structure with dynamic queries that you’ll recognize from RDMBS ......一起来看看 《The Definitive Guide to MongoDB》 这本书的介绍吧!