Python3查看文件是否存在,以及读、写与执行的属性

liftword22小时前技术文章1

目录

  • 技术背景
  • 代码实现
  • 测试分析
  • 总结概要
  • 版权声明

技术背景

在使用python对系统文件进行操作的项目中,经常需要用到对本地文件的存在和读写进行判断的操作。最常用的比如os.exists函数,可以很方便的判断给定的文件名是否存在于系统中。但是这里我们介绍的是一个更加专业的判断方案:os.access。使用这个方法,不仅可以判断文件是否存在,还可以判断当前用户对这个文件的读、写和执行的属性。

代码实现

这里我们构造一个名为osaccess_test.py的测试项目,这个项目采取了读取命令行的方式来获取需要校验的文件名。对于文件名的校验有4个参数配置:F_OK校验文件是否存在,R,W,X分别校验文件是否具备读、写和执行的权限。如果符合相关的条件选项,则返回值为True。关于返回值的判断,可以用is True或者==1或者直接if condition都是可以的。关于测试的结果,可以参考下一个章节。

# osaccess_test.py

import os
import sys

if sys.argv[1] == '-n':
    file_name = sys.argv[2] # 从命令行获取文件名参数

if os.access(file_name, os.F_OK) is True:
    print ('File {} exists!'.format(file_name))
else:
    print ('File {} not exists!'.format(file_name))

if os.access(file_name, os.R_OK):
    print ('File {} can be read!'.format(file_name))
else:
    print ('File {} can not be read!'.format(file_name))

if os.access(file_name, os.W_OK):
    print ('File {} can be write!'.format(file_name))
else:
    print ('File {} can not be write!'.format(file_name))

if os.access(file_name, os.X_OK):
    print ('File {} can be executed!'.format(file_name))
else:
    print ('File {} can not be executed!'.format(file_name))

测试分析

首先我们测试一个不存在的文件,可以看到当前目录下仅有一个py测试文件:

[dechin@dechin-manjaro access]$ ll
总用量 4
-rw-r--r-- 1 dechin dechin 706  3月 22 10:47 osaccess_test.py

从命令行输入一个文件名为1.txt的参数,并以如下的方式来执行:

[dechin@dechin-manjaro access]$ python3 osaccess_test.py -n 1.txt
File 1.txt not exists!
File 1.txt can not be read!
File 1.txt can not be write!
File 1.txt can not be executed!

我们发现所有的判断结果都是False,这也是正确的。接下来测试一个644权限的文件,首先用touch在当前帐号下产生一个1.txt的文件:

[dechin@dechin-manjaro access]$ touch 1.txt
[dechin@dechin-manjaro access]$ ll
总用量 4
-rw-r--r-- 1 dechin dechin   0  3月 22 10:47 1.txt
-rw-r--r-- 1 dechin dechin 706  3月 22 10:47 osaccess_test.py

然后执行同样的命令:

[dechin@dechin-manjaro access]$ python3 osaccess_test.py -n 1.txt
File 1.txt exists!
File 1.txt can be read!
File 1.txt can be write!
File 1.txt can not be executed!

这次结果就不一样了,除了可执行权限外,其他条件都是满足要求的。为了测试可执行权限,我们将该文件的权限配置改为700测试一下:

[dechin@dechin-manjaro access]$ chmod 700 1.txt
[dechin@dechin-manjaro access]$ ll
总用量 4
-rwx------ 1 dechin dechin   0  3月 22 10:47 1.txt
-rw-r--r-- 1 dechin dechin 706  3月 22 10:47 osaccess_test.py

再执行同样的指令:

[dechin@dechin-manjaro access]$ python3 osaccess_test.py -n 1.txt
File 1.txt exists!
File 1.txt can be read!
File 1.txt can be write!
File 1.txt can be executed!

到这里我们就发现,所有的检查条件都满足要求了。最后我们还需要测试一个场景,如果是在其他账户下,比如root账户下,创建了一个文件,那么得到的结论是存在文件还是不存在文件呢?首先用su root跳转到root账户下,然后再用touch生成一个空文件:

[dechin-root access]# touch 2.txt
[dechin-root access]# ll
总用量 4
-rwx------ 1 dechin dechin   0  3月 22 10:47 1.txt
-rw-r--r-- 1 root   root     0  3月 22 10:59 2.txt
-rw-r--r-- 1 dechin dechin 706  3月 22 10:47 osaccess_test.py

接着回到创建py文件的帐号下,用同样的指令,但是换一个文件名输入进行测试:

[dechin@dechin-manjaro access]$ python3 osaccess_test.py -n 2.txt
File 2.txt exists!
File 2.txt can be read!
File 2.txt can not be write!
File 2.txt can not be executed!

这里我们发现2.txt这个文件还是存在的并且可读的,这跟other组可读是直接相关的,让我们把other组可读的权限去掉再进行测试:

[dechin-root access]# chmod 640 2.txt 
[dechin-root access]# ll
总用量 4
-rwx------ 1 dechin dechin   0  3月 22 10:47 1.txt
-rw-r----- 1 root   root     0  3月 22 10:59 2.txt
-rw-r--r-- 1 dechin dechin 706  3月 22 10:47 osaccess_test.py

还是执行同样的指令:

[dechin@dechin-manjaro access]$ python3 osaccess_test.py -n 2.txt
File 2.txt exists!
File 2.txt can not be read!
File 2.txt can not be write!
File 2.txt can not be executed!

结果我们发现,虽然所有的权限都不具备,但是还是可以看到这个文件存在的。

总结概要

本文介绍了如何使用os.access的方法来判断系统文件的存在性与读、写和可执行权限等。这在日常文件操作中有着比较重要的意义,意味着我们可以先判断文件是否存在再决定是否删除系统文件,而不是直接用os.remove进行删除操作,如果有异常再进行捕获,这种的操作非常的不符合操作逻辑,而且不优雅。

版权声明

本文首发链接为:https://www.cnblogs.com/dechinphy/p/osaccess.html
作者ID:DechinPhy
更多原著文章请参考:https://www.cnblogs.com/dechinphy/

相关文章

python 判断变量是否是 None 的三种写法

代码中经常会有变量是否为None的判断,有三种主要的写法:第一种是 if x is None ;第二种是 if not x: ;第三种是 if not x is None (这句这样理解更清晰 if...

简单学Python——关键字2——True和False

True和False是Python中的两个关键字,是布尔类型,分别用于表示真和假。1、True和False表示真和假的例子:#将1==2的结果赋值给了x x=1==2 #将1==2的结果赋值给了y y...

Python基础:pass语句知识详解(python中pass)

欢迎你来到站长在线的站长学堂学习Python知识,本文分享的是《pass语句知识详解》。pass的中文翻译:通过;走过;沿某方向前进;向某方向移动;及格;合格;通行证。在Python中表示空的语句,包...

Python的条件判断(python三个条件判断)

计算机之所以能够执行众多自动化任务,关键在于它具备自行进行条件判断的能力。例如,当输入用户年龄后,依据不同的年龄来打印相应内容,在 Python 程序里,这可以通过 if 语句来实现,示例如下:age...

用python编写判断输入是否为整数的程序

最近在自学python,写了两个小程序,大家帮个看看有没有更好的方式来编写,没学过编程,学起来有点懵。想实现一个功能,就是判断外部输入是否为整数,就是判断是不是数字,要是输入的其他的返回“您输入的信息...

python编程实践:如何将变量正确设置为空?

在Python中,变量是非常重要的一部分。它们用于储存数据,来支持程序的运行。当我们在编程时,将来可能会遇到一个问题:如何将变量正确设置为空?什么是变量?在Python中,变量是程序员用来储存数据的一...