mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-24 06:56:42 +00:00
parent
3fd0a6d638
commit
e497e98ca1
@ -538,6 +538,14 @@ class Project:
|
|||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
path = os.path.join(root, file)
|
path = os.path.join(root, file)
|
||||||
|
# Try open the file
|
||||||
|
try:
|
||||||
|
open(path).close()
|
||||||
|
except OSError as e:
|
||||||
|
msg = "Could not export file {}: {}".format(path, e)
|
||||||
|
log.warn(msg)
|
||||||
|
self.emit("log.warning", {"message": msg})
|
||||||
|
continue
|
||||||
# We rename the .gns3 project.gns3 to avoid the task to the client to guess the file name
|
# We rename the .gns3 project.gns3 to avoid the task to the client to guess the file name
|
||||||
if file.endswith(".gns3"):
|
if file.endswith(".gns3"):
|
||||||
self._export_project_file(path, z, include_images)
|
self._export_project_file(path, z, include_images)
|
||||||
|
Loading…
Reference in New Issue
Block a user