首页 > 代码库 > “os”模块 常用指令
“os”模块 常用指令
先首说一个通过os来调用的模块:os.path。os.path只是一个别名而已,对于不同的平台,这个模块可能有不同的名字。如,posix式的系统(如unix,linux)的话,它的别名就叫做os.path.对于Mac、windows等来说,可能名字叫做macpach, ntpath。
模块os.path下常见的函数:
abspath(path): Return an absolute path,返回绝对路经
basename(p): Returns the final component of a pathname:返回路经的最后一部分,即 最后一个 / 后的内容;commonprefix(list): Given a list of pathnames, returns the longest common leading componen,它的输入为一个路经
的列表,用于返回list中,所有path共有的最长的路径,从左向右,相同字符。
dirname(p): Returns the directory component of a pathname,返回目录哦;
exists(path): Test whether a path exists. Returns False for broken symbolic links,测试一个目录是否存在;
expanduser(path): Expand ~ and ~user constructions. If user or $HOME is unknown,do nothing.作用就是把目录
中的~展开;
getatime(filename): 获得最后一次访问文件的时间,可以通过 os.stat()函数查看具体的状态;
getctime(filename): 返回元数据最后一次change的时间;
getmtime(filename): 返回最后一次修改的时间;
isabs(s): 测试一个路经是否是绝对路经;
isdir(s) : Return true if the pathname refers to an existing directory.
isfile(path): Test whether a path is a regular file
join(path1[, path2[, ...]]); 将多个路径组合后返回,第一个绝对路径之前的参数将被忽略normcase(path): 在Linux下,该函数会原样返回path,在windows平台上会将路径中所有字符转换为小写,并将所有斜杠转换为反斜杠 splitdrive(path): 拆分驱动器名和路径,主要对win,对linux元组第一个总是空的 splitext(path): 分离文件名与扩展名;默认返回(fname,fextension)元组,可做分片操作 ,以“.”为分隔符 getsize(path): 返回path的大小(字节)
在os模块中,相关的函数太多了,只说几个有用的,如果想具体看,可以通过 help(‘os’)查看哦;
一些与平台相关的一些常量,平台一一样,返回的值也不一样;
- os.name is ‘posix‘, ‘nt‘, ‘os2‘, ‘ce‘ or ‘riscos‘ ,操作系统的名字;
- os.curdir is a string representing the current directory (‘.‘ or ‘:‘) 当前目录的表示;
- os.pardir is a string representing the parent directory (‘..‘ or ‘::‘) 父目录的表示;
- os.sep is the (or a most common) pathname separator (‘/‘ or ‘:‘ or ‘\\‘)目录名的分隔号;
- os.extsep is the extension separator (‘.‘ or ‘/‘) 名字与扩展名之间的分隔号;
- os.altsep is the alternate pathname separator (None or ‘/‘)
- os.pathsep is the component separator used in $PATH etc 目录之间的分隔号,linux下为:。
- os.linesep is the line separator in text files (‘\r‘ or ‘\n‘ or ‘\r\n‘)一行的分隔号;
- os.defpath is the default search path for executables,执行程序时的默认路经;linux下通常为bash的路经
- os.devnull is the file path of the null device (‘/dev/null‘, etc.) 空设备的文件路经;
一些常用函数:
os.getcwd() 获取当前工作目录,即当前python脚本工作的目录路径os.chdir("dirname") 改变当前脚本工作目录;相当于shell下cdos.pardir 获取当前目录的父目录字符串名:(
‘..‘
)
os.makedirs(‘dirname1/dirname2‘) 可生成多层递归目录os.removedirs(‘dirname1‘) 若目录为空,则删除,并递归到上一级目录,如若也为空,则删除,依此类推os.mkdir(‘dirname‘) 生成单级目录;相当于shell中mkdir dirnameos.rmdir(‘dirname‘) 删除单级空目录,若目录不为空则无法删除,报错;相当于shell中rmdir dirnameos.listdir(‘dirname‘) 列出指定目录下的所有文件和子目录,包括隐藏文件,并以列表方式打印os.remove() 删除一个文件os.rename("oldname","newname") 重命名文件/目录os.stat(‘path/filename‘) 获取文件/目录信息os.symlink(‘path/filename‘,‘ln_filename‘) 创建符号链接,源需绝对路径os.utime() 修改时间属性 os.system(command) 函数用来运行shell命令:
最后,如果你觉得以上内容对你有帮助,如果你有钱的话,如果你愿意的话,可以打赏一下我这个穷学生哦,以资助我买几本书。靠劳动吃饭,应该不会被你们唾弃吧,哈哈哈,自愿自愿哈……
您可以选择:2毛,5毛、1元。
“os”模块 常用指令