Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -64,13 +64,14 @@ class FileHandler(FileSystemEventHandler):
|
|
64 |
"name": event.src_path.split('/')[-1],
|
65 |
}
|
66 |
websockets.broadcast(self.connected,json.dumps(new_event))
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
74 |
|
75 |
def on_moved(self, event):
|
76 |
if event.is_directory:
|
@@ -83,16 +84,17 @@ class FileHandler(FileSystemEventHandler):
|
|
83 |
"newname": event.dest_path.split('/')[-1],
|
84 |
}
|
85 |
websockets.broadcast(self.connected,json.dumps(new_event))
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
"
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
96 |
|
97 |
JOIN = {}
|
98 |
|
|
|
64 |
"name": event.src_path.split('/')[-1],
|
65 |
}
|
66 |
websockets.broadcast(self.connected,json.dumps(new_event))
|
67 |
+
else:
|
68 |
+
print(f'File {event.src_path} has been deleted.')
|
69 |
+
new_event = {
|
70 |
+
"type": "delete",
|
71 |
+
"name": event.src_path.split('/')[-1],
|
72 |
+
"path": event.src_path,
|
73 |
+
}
|
74 |
+
websockets.broadcast(self.connected,json.dumps(new_event))
|
75 |
|
76 |
def on_moved(self, event):
|
77 |
if event.is_directory:
|
|
|
84 |
"newname": event.dest_path.split('/')[-1],
|
85 |
}
|
86 |
websockets.broadcast(self.connected,json.dumps(new_event))
|
87 |
+
else:
|
88 |
+
print(f'File {event.src_path} has been renamed to {event.dest_path}.')
|
89 |
+
new_event = {
|
90 |
+
"type": "rename",
|
91 |
+
|
92 |
+
"OldPath": event.src_path,
|
93 |
+
"oldname": event.src_path.split('/')[-1],
|
94 |
+
"NewPath": event.dest_path,
|
95 |
+
"newname": event.dest_path.split('/')[-1],
|
96 |
+
}
|
97 |
+
websockets.broadcast(self.connected,json.dumps(new_event))
|
98 |
|
99 |
JOIN = {}
|
100 |
|