-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtab_space.py
36 lines (28 loc) · 907 Bytes
/
tab_space.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2017-11-23 16:27:40
# @Author : ayyll ([email protected])
# @Link : http://ayyll.com
# @Version : V-1.0.0
import os
import sys
#获取当前目录下的文件
file_arr = os.listdir(os.getcwd())
for i in range(len(file_arr)):
if file_arr[i].endswith('.c') or file_arr[i].endswith('.py'):
print 'now we are repairing the ' + file_arr[i] + '...'
file_obj = open(file_arr[i],'r')
try:
all_the_text = file_obj.read()
finally:
file_obj.close()
#print all_the_text
ans = all_the_text.replace('\t',' ')
#写文件,覆盖的方式
file_obj = open(file_arr[i],'w')
try:
file_obj.write(ans)
finally:
file_obj.close()
print 'Formatting Successful!'
os.system("pause")