-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05_copyspecial.py
72 lines (56 loc) · 1.61 KB
/
05_copyspecial.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
#!/usr/bin/python
#PERFORMED BY: alexxa
#DATE: 20.12.2013
#SOURCE: Google Python course https://developers.google.com/edu/python/
#https://developers.google.com/edu/python/exercises/copy-special
# Copyright 2010 Google Inc.
# Licensed under the Apache License, Version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
# Google's Python Class
# http://code.google.com/edu/languages/google-python-class/
import sys, re, os, shutil, zipfile
"""Copy Special exercise
"""
def get_special_paths(dir):
'''
Returns a list of all special files in a given directory
'''
res = []
paths = os.listdir(dir)
for file in paths:
match = re.search(r'__(\w+)__', file)
if match:
res.append(os.path.abspath(os.path.join(dir, file)))
#for item in res:
# print(item)
return res
def copy_to(to_dir):
'''
Copy all files to the given destination
'''
files = get_special_paths('.')
if not os.path.exists(to_dir):
os.mkdir(to_dir)
for file in files:
file = os.path.basename(file)
try:
shutil.copy(file, os.path.join(to_dir, file))
print('{} was copied to {}'.format(file, to_dir))
except:
pass
def zip_to(zipfile_name):
'''
Zip all given files into a new zip file
with the defined name.
'''
files = get_special_paths('.')
zipf = zipfile.ZipFile(zipfile_name, 'w')
for file in files:
zipf.write(os.path.join(file))
zipf.close()
# part A
#get_special_paths('.')
# part B
# copy_to('new_dir')
# part C
zip_to('file.zip')