You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jednano opened this issue
Apr 19, 2017
· 1 comment
Labels
fsIssues and PRs related to the fs subsystem / file system.invalidIssues and PRs that are invalid.windowsIssues and PRs related to the Windows platform.
If a file named Foo.js already exists on the file system and you attempt to fs.writeFileSync('foo.js', data), the lowercase foo.js name is not honored. This can and has been causing issues. See Related Issues below.
That's how file names work on Windows. It's not unique to node, you will find that other runtimes and programming languages work the same. It's not even unique to Windows - HFS+ on OS X works the same way.
bnoordhuis
added
fs
Issues and PRs related to the fs subsystem / file system.
invalid
Issues and PRs that are invalid.
windows
Issues and PRs related to the Windows platform.
labels
Apr 19, 2017
fsIssues and PRs related to the fs subsystem / file system.invalidIssues and PRs that are invalid.windowsIssues and PRs related to the Windows platform.
If a file named
Foo.js
already exists on the file system and you attempt tofs.writeFileSync('foo.js', data)
, the lowercasefoo.js
name is not honored. This can and has been causing issues. See Related Issues below.Related issues
The text was updated successfully, but these errors were encountered: