Pythonos.path.isfile()的使用方法汇总
Posted 51study
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pythonos.path.isfile()的使用方法汇总相关的知识,希望对你有一定的参考价值。
方法一:
1 # -*- coding:utf-8 -*- 2 import os 3 import sys 4 from uiautomator import device as d 5 6 filepath = r‘E:ProjectA3A_8_4Gexerciseapp_listhello.apk‘ 7 8 if os.path.isfile(filepath): 9 print "true" 10 else: 11 print "false"
总结:如果变量filepath中给出的是一个绝对路径的话,那么在使用os.path.isfile()时就只需要将这个绝对路径对应的变量传进来就行
方法二:
1 # -*- coding:utf-8 -*- 2 import os 3 import sys 4 from uiautomator import device as d 5 6 filepath = sys.path[0] + "\app_list\" 7 filename = "hello.apk" 8 9 if os.path.isfile(os.path.join(filepath,filename)): 10 print "true" 11 else: 12 print "false"
总结:如果将路径和文件分开来写的话,那么在使用os.path.isfile()时,则必须将这两个连接起来使用,使用os.path.join()方法将路径和文件连接起来
方法三:
1 # -*- coding:utf-8 -*- 2 import os 3 import sys 4 from uiautomator import device as d 5 6 if os.path.isfile(‘E:\Project\A3A_8_4G\exercise\app_list\hello.apk‘): 7 print "true" 8 else: 9 print "false"
总结:这个就是直接在os.path.isfile()中传入绝对路径,但需要注意的是需要将号进行转义,不然也会报错了
以上是关于Pythonos.path.isfile()的使用方法汇总的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Kettle java脚本组件的使用说明(简单使用升级使用)
PageHelp的使用getParameter的使用zpage-nav的使用QRcode的使用wxpay微信支付的使用jackson-xml数据的转换