1 Star 0 Fork 138

可乐君/Taier

forked from 袋鼠云/Taier 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0
import os file_list=[] def gci(filepath): files = os.listdir(filepath) for fi in files: fi_d = os.path.join(filepath,fi) if os.path.isdir(fi_d): gci(fi_d) else: if fi_d.endswith(('.java')): readfile(os.path.join(filepath, fi_d)) lister = ['Licensed to the Apache Software Foundation (ASF) under one'] def readfile(filename): try: fopen = open(filename,'r') fileread=fopen.read() fopen.close() for lis in lister: if lis not in fileread: file_list.append(filename) writefile(filename) except Exception as e: print e license ='''/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ ''' def writefile(filename): try: with open(filename, "r+") as f: old = f.read() f.seek(0) f.write(license) f.write(old) except Exception as e: print e gci(os.getcwd()) print "file_list ",file_list

简介

Taier 名字由来中国古代十大名剑之一 —— 太阿。 Taier 是一个分布式可视化的DAG任务调度系统。旨在降低ETL开发成本、提高大数据平台稳定性,大数据开发人员可以在 Taier 直接进行业务逻辑的开发,而不用关心任务错综复杂的依赖关系与底层的大数据平台的架构实现,将工作的重心更多地聚焦在业务之中。 展开 收起
Java
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/colaKun/taier.git
git@gitee.com:colaKun/taier.git
colaKun
taier
Taier
master

搜索帮助