eric6/MicroPython/MicroPythonFileSystemUtilities.py

branch
micropython
changeset 7084
3eddfc540614
parent 7081
ed510767c096
child 7137
4ed2573947ff
--- a/eric6/MicroPython/MicroPythonFileSystemUtilities.py	Thu Jul 25 19:55:40 2019 +0200
+++ b/eric6/MicroPython/MicroPythonFileSystemUtilities.py	Fri Jul 26 20:05:49 2019 +0200
@@ -54,6 +54,9 @@
     if stat.S_ISDIR(mode) or isDir:
         # append a '/' for directories
         return name + "/"
+    elif stat.S_ISLNK(mode):
+        # append a '@' for links
+        return name + "@"
     else:
         # no change
         return name

eric ide

mercurial