|
@@ -154,10 +154,10 @@ def modify_title(filepath):
|
|
|
oldPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[0]
|
|
|
newPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[1]
|
|
|
# os.renames(oldPath,newPath)
|
|
|
- if os.path.exists(newPath):
|
|
|
- return {"success" : 0, "message" : "New directory exists."}
|
|
|
- shutil.copytree(oldPath, newPath)
|
|
|
- shutil.rmtree(oldPath)
|
|
|
+ """ if os.path.exists(newPath):
|
|
|
+ return {"success" : 0, "message" : "New directory exists."} """
|
|
|
+ """ shutil.copytree(oldPath, newPath)
|
|
|
+ shutil.rmtree(oldPath) """
|
|
|
print(oldPath + ' => ' + newPath)
|
|
|
|
|
|
return {"success": 1}
|