-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k

Description
- Version: v9.2.0
- Platform: Windows 8.1, Windows 10, Ubuntu 17.10
- Subsystem: fs
In Windows, if a file name ends with forward slash (/
), fs
interprets it as regular file (like there is no slash at all) and does not throw any errors. In Linux, it throws error
EISDIR: illegal operation on a directory, open
IMO, fs should either throw the same error in Windows, or don't throw the error in Linux.
Of course, when we talk about file name consistency, there will always be some characters which are allowed in Linux, but not allowed in Windows (like \u0001
), but that inconsistency is a result of the way OS handles these situations. However, if a file name ends with a forward slash, it either means that someone mistakenly tried to open directory as a file, or just have forgotten to remove the slash. Therefore, fs
should be consistent with the way it handles forward slash at the end of the file name. It means: either throw error always, or behave like there is no slash.
I made a script which shows how it currently works.