Tagged Questions
The fs tag has no wiki summary.
8
votes
2answers
2k views
What are the pros and cons of fs.createReadStream vs fs.readFile in node.js?
I'm mucking about with node.js and have discovered two ways of reading a file and sending it down the wire, once I've established that it exists and have sent the proper MIME type with writeHead:
// ...
3
votes
1answer
61 views
latency on posix reads()
we have a very latency sensitive application, in the sense that latency spikes on reads are very very bad.
i've tested xfs and ext4, and writing O_ASYNC to the file and then fdatasync() at the end ...
3
votes
3answers
531 views
Weird standard for FAT32 >4gb files
I have recently encountered an embedded system with IDE drives that are FAT32 but have >4gb files. It appears to do this by setting the file size in the 32byte directory entry to how many bytes the ...
2
votes
1answer
160 views
How can I delete files (in a transaction-like manner) from MongoDB's GridFS using the Mongo console
I need to delete a bunch of files, stored in Mongo's GridFS that are older than a given date. This implies that I'd need to delete from both fs.files and fs.chunks collections.
I was thinking of ...
2
votes
1answer
635 views
JSON Error when parsing “… has no method 'replace'”
Let me preface this with the admission that I am a complete programming and javascript noob and that fact is the source of my trouble.
I'm trying to populate a large array of custom objects from a ...
2
votes
2answers
176 views
How to copy a image?
I want to copy image.png form /folder1 to /folder2, how to do it?
/folder1
image.png
/folder2
Thanks!
2
votes
2answers
935 views
What is the data structure of the Inode number like?
I am flabbergasted by the definition of the inode number:
An inode is a data structure on a traditional Unix-style file system
such as UFS or ext3. An inode stores basic information about a ...
1
vote
1answer
60 views
How to send a http response without using http module in node.js?
I need to implement a HTTP server in node.js without using http module. How fun!
I'm having trouble with sending the response socket.
I'm trying to fetch a file and so my code looks as follows:
...
1
vote
1answer
83 views
problems with sending jpg over http - node.js
I'm trying to write a simple http web server, that (among other features), can send the client a requested file.
Sending a regular text file/html file works as a charm. The problem is with sending ...
1
vote
2answers
71 views
buffering on top of VFS?
the problem I try to deal with it is the saving of big number (millions) of small files (up to 50KB), which are sent via network. The saving is done sequential: server receives a file or a dir (via ...
1
vote
3answers
166 views
F# Positional Arguments in Attributes
I'm trying to create an attribute in F# with positional arguments but failing all the time.
type ColumnAttribute(?index:int,?name:string) =
inherit Attribute()
let mutable index = index
...
1
vote
1answer
601 views
FS register in Win32
I'm reading how SEH is implemented in Win32 and I came across this thing called the FS register. I couldn't find anything good on Google (most probably I may be searching for the wrong thing). So can ...
0
votes
1answer
20 views
I have a text file in NOTEPAD++ that has FS highlighted in black..like the way CR gets highlighted to represent \r
I need to get rid of those FS . But I do not know what its extended equivalent is. When I copy and paste it in the find field, and click Count, I get an accurate count of all of them. However I am ...
0
votes
1answer
60 views
How do I use chmod with Node.js
How do I use chmod with Node.js?
There is a method in the package fs, which should do this, but I don't know what it takes as the second argument.
fs.chmod(path, mode, [callback])
...
0
votes
3answers
50 views
File system block size
What is the significance of the file system block size? If my fs block size is set at say 8K does that mean that all read/write I/O will happen at size 8K? So if my application wants to read say 16 ...
0
votes
1answer
58 views
Different results from asynchronous and synchronous reading
I have a fairly simple script that attempts to read and then parse a JSON file. The JSON is very simple and I am pretty sure it is valid.
{
"foo": "bar"
}
Now, I have been trying to read it ...
0
votes
0answers
38 views
nodejs read image headers
I'm writing a script to download files from urls in a list. The problem I'm having is that the urls don't just point to static files, like file.jpg, they tend to point to servlets that return a file.
...
0
votes
1answer
129 views
Node.JS, Socket.IO & large XML files: extreme performance loss?
I stumbled upon an ugly problem the other day:
I'm using XML strings to communicate between server and client and exchange precisely custom defined Data. Works fine so far as long as the size of the ...
0
votes
1answer
129 views
Special characters in node.js readdir()
I'm running this piece of code in node.js in order to see the files in a directory an to see the stats for them:
var getFiles = function (dir, done) {
fs.readdir(dir, function (err, files) {
...
0
votes
1answer
63 views
Split file in place - is it possible?
Okay, I have a weird problem.
I have a file, say 100MB in size. I need to split it into (for example) 4 different parts.
Let's say first file from 0-20MB, second 20-60MB, third 60-70MB and last ...
0
votes
1answer
52 views
Node.js Piping-how to write?
I need to figure out how I can give exec permissions to write.
var exec = require('child_process').exec;
exec('ffmpeg -i file.ogv -f mp4 file.mp4', function(err, stdout, stderr){
});
// ffmpeg ...
0
votes
1answer
315 views
Mocking filesystem with jasmine and node.js
I'm having trouble with testing my file access with jasmine. I am writing a simple watcher that registers a callback with require('fs').watch and emits an event containing the name of the file, ...
0
votes
1answer
45 views
write cache and write sequence order
ok, here i have some weird question:
let say we have some binary file (.log), and sequence of write operations, for example log1, log2, log3 and each has some block size n (raw data).
question: can ...
0
votes
1answer
177 views
create a new tmpfs and mount it
When i do the "df" command in my machine I can see the following:
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 491520 127240 364280 26% /
I ...
0
votes
2answers
58 views
How to store files on disc to increase performance
From performance point of view: How it's better to store uploaded files on disk?
One folder and huge number of images? or create logically subfolders?
OS: Linux
FS: ext3
Thanks!
0
votes
0answers
35 views
What can i use to journal writes to file system
I need to track all writes to files in order to have synchronized version of files on different place (server or just other directory, not considerable).
Let it:
all files located in same directory ...
0
votes
2answers
183 views
Historical perspective to Linux Filesystems
Jonathan Leffler's comment in the question "How can I find the Size of some specified files?" is thought-provoking. I will break it into parts for analysis.
-- files are stored on pages;
you ...