forked from kcho/ccncpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccncpy.py
97 lines (82 loc) · 2.94 KB
/
ccncpy.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/ccnc_bin/venv/bin/python
import os
import re
import argparse
import sys
import textwrap
import pandas as pd
pd.set_option('display.max_rows', 50000)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
#pd.set_option('display.height', 1000)
def extSearch(ext,location=os.getcwd()):
out = []
for root,dirs,files in os.walk(location):
for sFile in files:
name = sFile.split('.')[0]
extension = '.'.join(sFile.split('.')[1:])
if re.search(ext,extension,re.IGNORECASE):
out.append(os.path.join(root,sFile))
return out
def subDirSearch(subDir,location=os.getcwd()):
out = []
for root,dirs,files in os.walk(location):
for dir in dirs:
inList = [x for x in subDir if x in os.listdir(os.path.join(root,dir))]
if len(inList) == len(subDir):
out.append(os.path.join(root,dir))
if len(out) == 1:
return out
elif len(out) == 0:
print 'There are no matching directory'
return 'none'
else:
print 'There are more than 2 directories matching description'
print out
return out
def countExt(ext,location=os.getcwd()):
extLocList = extSearch(ext,location)
rootC = [os.path.split(x)[0] for x in extLocList]
rootU = set(rootC)
countD = {}
for root in rootU:
shorter_root = root.split(location)[1]
count = len([x for x in extLocList if root in x])
countD[shorter_root] = count
return countD
def dict2pd(D):
return pd.DataFrame.from_dict(D,orient='index')
def list2pd(D):
return pd.DataFrame.from_list(D,orient='index')
def main(args):
if not args.count:
for i in extSearch(args.extension,args.inputDir):
print i
else:
print dict2pd(countExt(args.extension,args.inputDir))
if __name__ == '__main__':
parser = argparse.ArgumentParser(
formatter_class=argparse.RawDescriptionHelpFormatter,
description=textwrap.dedent('''\
{codeName} : Search files with user defined extensions
========================================
eg) {codeName} -e 'dcm|ima' -i /Users/kevin/NOR04_CKI
Search dicom files in /Users/kevin/NOR04_CKI
eg) {codeName} -c -e 'dcm|ima' -i /Users/kevin/NOR04_CKI
Count dicom files in each directory under input
'''.format(codeName=os.path.basename(__file__))))
parser.add_argument(
'-i', '--inputDir',
help='Data directory location, default=pwd',
default=os.getcwd())
parser.add_argument(
'-c', '--count',
help='count files with the ext in each directory',
action='store_true')
parser.add_argument(
'-e', '--extension',
help='Extension to search')
args = parser.parse_args()
if not args.extension:
parser.error('No extension given, add -e or --extension')
main(args)