-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
Closed
Labels
fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.questionIssues that look for answers.Issues that look for answers.streamIssues and PRs related to the stream subsystem.Issues and PRs related to the stream subsystem.
Description
Windows 7/10,
node 5.6.0, and latest builds...
This seems like something fairly critical...
"use strict";
const fs = require( 'fs' );
var outData = fs.createWriteStream( "output.txt" );
outData.write( "line one" );
outData.write( "line two" );
outData.close();
results in a file that only has 'line one' in it.
it can be several lines... I'm often missing 5 lines in this one file... but basically every file never writes all information to the file.
this might be similar to #2314
Metadata
Metadata
Assignees
Labels
fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.questionIssues that look for answers.Issues that look for answers.streamIssues and PRs related to the stream subsystem.Issues and PRs related to the stream subsystem.