Ramesh-vani commited on
Commit
17a3236
·
verified ·
1 Parent(s): 92b71bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -17
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
- print(f'File {event.src_path} has been deleted.')
68
- new_event = {
69
- "type": "delete",
70
- "name": event.src_path.split('/')[-1],
71
- "path": event.src_path,
72
- }
73
- websockets.broadcast(self.connected,json.dumps(new_event))
 
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
- print(f'File {event.src_path} has been renamed to {event.dest_path}.')
87
- new_event = {
88
- "type": "rename",
89
-
90
- "OldPath": event.src_path,
91
- "oldname": event.src_path.split('/')[-1],
92
- "NewPath": event.dest_path,
93
- "newname": event.dest_path.split('/')[-1],
94
- }
95
- websockets.broadcast(self.connected,json.dumps(new_event))
 
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