Python os.lstat() 方法
python os.lstat() 方法
os.lstat() 方法用于类似 stat() 返回文件的信息,但是没有符号链接。在某些平台上,这是fstat的别名,例如 windows。
语法
lstat()方法语法格式如下:
os.lstat(path)
参数
- path -- 要返回信息的文件。
返回值
返回文件信息。
实例
以下实例演示了 lstat() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打开文件 path = "/var/www/html/foo.txt" fd = os.open( path, os.o_rdwr|os.o_creat ) # 关闭打开的文件 os.close( fd ) # 获取元组 info = os.lstat(path) print "文件信息 :", info # 获取文件 uid print "文件 uid :%d" % info.st_uid # 获取文件 gid print "文件 gid :%d" % info.st_gid
执行以上程序输出结果为:
文件信息 : (33261, 3450178l, 103l, 1, 500, 500, 0l, 1238866944, 1238866944, 1238948312) 文件 uid :500 文件 gid :500
相关文章
- Python 简介
- Python for 循环语句
- Python 字典 Dictionary
- Python 正则表达式
- Python 多线程
- Python2 与 Python3 版本区别
- Python 列表
- Python 队列
- Python 递归
- Python3 基础语法
- Python3 字符串(String)
- Python3 列表(List)
- Python3 集合(Set)
- Python3 if else 语句
- Python3 for while 循环语句
- Python3 作用域
- Python3 正则表达式
- Python3 XML 解析
- Python3 日期和时间
- Python3 MySQL 数据库连接 - PyMySQL 驱动