diff -r 8f72e61712c7 -r 11069c6bfff0 src/eric7/QScintilla/Editor.py --- a/src/eric7/QScintilla/Editor.py Sat Aug 31 11:26:54 2024 +0200 +++ b/src/eric7/QScintilla/Editor.py Sat Aug 31 15:45:39 2024 +0200 @@ -467,6 +467,10 @@ ] // 1024 ) + elif FileSystemUtilities.isDeviceFileName(self.fileName): + fileIsRemote = False + fileExists = False + fileSizeKB = 0 else: fileIsRemote = False fileExists = pathlib.Path(self.fileName).exists()