Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -242,12 +242,20 @@ async def create_folder(websocket, key,project_name, path,name,root,targetElemen
|
|
242 |
# print(folder_path,'created')
|
243 |
websockets.broadcast(connected,json.dumps(event))
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
async def wirte_file(websocket, key,project_name, path, content, connected):
|
247 |
try:
|
248 |
file_path = os.path.join(os.getcwd(), 'projects', key,project_name, path)
|
249 |
file_content = content
|
250 |
-
|
|
|
251 |
file.write(file_content)
|
252 |
|
253 |
event = {
|
@@ -589,8 +597,9 @@ async def create_file_structure(websocket, data, base_path='.'):
|
|
589 |
for child in data['children']:
|
590 |
await create_file_structure(websocket,child, base_path=folder_path)
|
591 |
elif data['type'] == 'file':
|
|
|
592 |
file_path = os.path.join(base_path, data['name'])
|
593 |
-
with open(file_path, 'w') as file:
|
594 |
file.write(data['content'])
|
595 |
|
596 |
event = {
|
|
|
242 |
# print(folder_path,'created')
|
243 |
websockets.broadcast(connected,json.dumps(event))
|
244 |
|
245 |
+
def auto_detect_mode(content):
|
246 |
+
if isinstance(content, str):
|
247 |
+
return 'w' # If content is a string, it's text
|
248 |
+
elif isinstance(content, bytes):
|
249 |
+
return 'wb' # If content is bytes, it's binary
|
250 |
+
else:
|
251 |
+
raise ValueError("Unsupported content type. Expected str or bytes.")
|
252 |
|
253 |
async def wirte_file(websocket, key,project_name, path, content, connected):
|
254 |
try:
|
255 |
file_path = os.path.join(os.getcwd(), 'projects', key,project_name, path)
|
256 |
file_content = content
|
257 |
+
mode = auto_detect_mode(content)
|
258 |
+
with open(file_path, 'w', mode) as file:
|
259 |
file.write(file_content)
|
260 |
|
261 |
event = {
|
|
|
597 |
for child in data['children']:
|
598 |
await create_file_structure(websocket,child, base_path=folder_path)
|
599 |
elif data['type'] == 'file':
|
600 |
+
mode = auto_detect_mode(data['content'])
|
601 |
file_path = os.path.join(base_path, data['name'])
|
602 |
+
with open(file_path, 'w',mode) as file:
|
603 |
file.write(data['content'])
|
604 |
|
605 |
event = {
|