This commit is contained in:
Khoa Nguyen Anh
2018-03-02 22:52:48 +07:00
commit ccf26a8079
10 changed files with 370 additions and 0 deletions

2
common/__init__.py Normal file
View File

@ -0,0 +1,2 @@
from .get_content import get_content
from .same_name_alert import same_name_alert

13
common/get_content.py Normal file
View File

@ -0,0 +1,13 @@
import os
def get_content(source):
files = []
folders = []
for f in os.listdir(source):
if os.path.isfile(os.path.join(source, f)):
files.append(f)
else:
folders.append(f)
return files, folders

24
common/same_name_alert.py Normal file
View File

@ -0,0 +1,24 @@
import os
def same_name_alert(oldfile, newfile):
print("Old: {}".format(oldfile))
print("New: {}".format(newfile))
print("File existed, overwrite?")
print("'y' for yes")
print("'m' to view more data")
print("'l' to listen to two song")
while True:
ans = input("Answer: ")
if ans == 'y':
os.rename(oldfile, newfile)
break
elif ans == 'm':
print("Old file data:")
print("New file data:")
elif ans == 'l':
print("Listen to song 1")
print("Listen to song 2")
else:
break
return