1 Star 0 Fork 0

Lzl/ttcn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ttcnsearch.py 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lzl 提交于 2021-11-15 19:53 . 解决if条件问题
import os
import shutil
filepath = './osmo-ttcn3-hacks-master'
s = []
def fileStore(filepath):
files = os.listdir(filepath);
for file in files: #遍历文件夹
path = filepath + '/' + file
if os.path.isdir(path): #判断是文件夹
fileStore(path)
elif file.endswith('.ttcn'):
s.append(path)
fileStore(filepath)
print(s) #打印结果
print(len(s))
dst = './ttcndata'
for item in s:
shutil.copy(item,dst)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code_lzl/ttcn.git
git@gitee.com:code_lzl/ttcn.git
code_lzl
ttcn
ttcn
master

搜索帮助