diff -r 217862c28319 -r 3eddfc540614 eric6/MicroPython/MicroPythonFileSystemUtilities.py --- 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