Python验证文件是否可读写代码分享


Posted in Python onDecember 11, 2017

本文分享实例代码主要在实现验证文件是否有读写权限问题,具体如下:

# Import python libs
import os
def is_writeable(path, check_parent=False):
 '''
 Check if a given path is writeable by the current user.
 :param path: The path to check
 :param check_parent: If the path to check does not exist, check for the
   ability to write to the parent directory instead
 :returns: True or False
 '''
 if os.access(path, os.F_OK) and os.access(path, os.W_OK):
  # The path exists and is writeable
  return True
 if os.access(path, os.F_OK) and not os.access(path, os.W_OK):
  # The path exists and is not writeable
  return False
 # The path does not exists or is not writeable
 if check_parent is False:
  # We're not allowed to check the parent directory of the provided path
  return False
 # Lets get the parent directory of the provided path
 parent_dir = os.path.dirname(path)
 if not os.access(parent_dir, os.F_OK):
  # Parent directory does not exit
  return False
 # Finally, return if we're allowed to write in the parent directory of the
 # provided path
 return os.access(parent_dir, os.W_OK)
def is_readable(path):
 '''
 Check if a given path is readable by the current user.
 :param path: The path to check
 :returns: True or False
 '''
 if os.access(path, os.F_OK) and os.access(path, os.R_OK):
  # The path exists and is readable
  return True
 # The path does not exist
 return False

总结

以上就是本文关于Python验证文件是否可读写代码分享的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:

如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
python文件操作相关知识点总结整理
Feb 22 Python
Django视图之ORM数据库查询操作API的实例
Oct 27 Python
python中cPickle类使用方法详解
Aug 27 Python
Django网络框架之HelloDjango项目创建教程
Jun 06 Python
pyqt5中QThread在使用时出现重复emit的实例
Jun 21 Python
解决django后台管理界面添加中文内容乱码问题
Nov 15 Python
Python select及selectors模块概念用法详解
Jun 22 Python
实例代码讲解Python 线程池
Aug 24 Python
python 对一幅灰度图像进行直方图均衡化
Oct 27 Python
详解Python3.8+PyQt5+pyqt5-tools+Pycharm配置详细教程
Nov 02 Python
python飞机大战游戏实例讲解
Dec 04 Python
python数据分析之用sklearn预测糖尿病
Apr 22 Python
Python文件操作基本流程代码实例
Dec 11 #Python
Python使用Turtle模块绘制五星红旗代码示例
Dec 11 #Python
浅析Git版本控制器使用
Dec 10 #Python
python中Apriori算法实现讲解
Dec 10 #Python
Python自动化运维之IP地址处理模块详解
Dec 10 #Python
python利用rsa库做公钥解密的方法教程
Dec 10 #Python
Python跨文件全局变量的实现方法示例
Dec 10 #Python
You might like
Excel数据导入Mysql数据库的实现代码
2008/06/05 PHP
PHP 实现多服务器共享 SESSION 数据
2009/08/15 PHP
php环境套包 dedeampz 伪静态设置示例
2014/03/26 PHP
php过滤表单提交的html等危险代码
2014/11/03 PHP
PHP防止刷新重复提交页面的示例代码
2015/11/11 PHP
PHP 实现链式操作
2021/03/09 PHP
js removeChild 障眼法 可能出现的错误
2009/10/06 Javascript
JavaScript 比较时间大小的代码
2010/04/24 Javascript
Extjs4 类的定义和扩展实例
2013/06/28 Javascript
关于js中for in的缺陷浅析
2013/12/02 Javascript
window.print打印指定div指定网页指定区域的方法
2014/08/04 Javascript
javascript DIV实现跟随鼠标移动
2020/03/19 Javascript
javascript瀑布流式图片懒加载实例解析与优化
2016/02/23 Javascript
很棒的js选项卡切换效果
2016/07/15 Javascript
node.js爬虫爬取拉勾网职位信息
2017/03/14 Javascript
vue2.0多条件搜索组件使用详解
2020/03/26 Javascript
jquery append与appendTo方法比较
2017/05/24 jQuery
详解使用Next.js构建服务端渲染应用
2018/07/10 Javascript
Angular6 正则表达式允许输入部分中文字符
2018/09/10 Javascript
node实现爬虫的几种简易方式
2019/08/22 Javascript
javascript实现简易计算器功能
2020/09/23 Javascript
[00:32]DOTA2上海特级锦标赛 Ehome战队宣传片
2016/03/03 DOTA
[44:01]2018DOTA2亚洲邀请赛3月30日 小组赛B组 EG VS paiN
2018/03/31 DOTA
python基础教程之序列详解
2014/08/29 Python
遗传算法之Python实现代码
2017/10/10 Python
获取Pytorch中间某一层权重或者特征的例子
2019/08/17 Python
处理HTML5新标签的浏览器兼容版问题
2017/03/13 HTML / CSS
HTML5中的Web Notification桌面右下角通知功能的实现
2018/04/19 HTML / CSS
5分钟实现Canvas鼠标跟随动画背景
2019/11/18 HTML / CSS
老海军美国官网:Old Navy
2016/09/05 全球购物
荷兰优雅女装网上商店:Heine
2016/11/14 全球购物
日本整理专家Marie Kondo的官方在线商店:KonMari
2020/06/29 全球购物
铭万公司.net面试题笔试题
2014/07/20 面试题
大学生军训自我评价分享
2013/11/09 职场文书
数控专业毕业生求职信
2014/06/12 职场文书
Python包argparse模块常用方法
2021/06/04 Python