05 2013 档案
摘要:#!/usr/bin/env python# -*- coding: utf-8 -*-import ossource_root = 'D:\source'test_root = 'D:\target'files_list = 'files.txt'def main(): with open(files_list,'r') as f: for l in f: tmp = l.strip().replace('/commbook/trunk/commbook','') tmp = tmp.replac
阅读全文