finished cli

This commit is contained in:
Raffu Khondaker 2020-06-16 20:18:25 -04:00
parent 381e9b702f
commit 925818c49c
2 changed files with 9 additions and 2 deletions

View File

@ -152,6 +152,13 @@ class Teacher:
self.classes = data['classes']
if os.path.isdir(self.username + "/Students"):
print("Synced to " + self.username)
existing_classes = os.listdir(self.username)
for c in self.classes:
if not c in str(existing_classes):
os.mkdir(self.username + "/" + c)
print("Updated: " + c)
command("touch " + self.username + "/" + c + "/README.md")
else:
os.makedirs(self.username + "/Students")

View File