Python Note_2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Note_2相关的知识,希望对你有一定的参考价值。

1. file i/o

 

import os,shutil

#print os.getcwd()


sourceRootFolder="D:\Automation\TestSuites\polaris"

count=0
filecount=0

for f in os.listdir(sourceRootFolder):
	tmpdir=os.path.join(sourceRootFolder, f)
	if f.startswith("T"):
		count=count+1
		newpath=os.path.join(tmpdir,"Scenarios")
		print (newpath)
		for sf in os.listdir(newpath):
			if os.path.isfile(os.path.join(newpath,sf))  and sf.endswith(".xml") :
				filecount=filecount+1


print (count," test suites in total")
print (filecount,"test Scenarios in total")

 

以上是关于Python Note_2的主要内容,如果未能解决你的问题,请参考以下文章

Note on python__2021年7月1日Python 字符串练习

Note on python__2021年7月2日Python练习使用list和tuple

Note on python__2021-07-02Python练习使用条件判断

Python_Note_Day 10_Coroutine

Note

Python_Note_Preview_03_URL