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

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