Tagged Questions
The fread tag has no wiki summary.
18
votes
2answers
570 views
What is a “byte” in C / C++
For example, here's a reference for fread:
size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );
Reads an array of count elements, each one with a size of "size bytes"...
So how ...
11
votes
6answers
375 views
How does fread really work?
The declaration of fread is as following:
size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
The question is: Is there a difference in reading performance of two such calls to fread:
...
9
votes
5answers
5k views
PHP technique to query the APNs Feedback Server
Can someone clarify what the APNs (Apple Push Notification) wants as far as how you query it?
The docs say it starts sending as soon as the connection is made. Does this mean that I don't do an ...
7
votes
11answers
4k views
Buffered reading from stdin using fread in C
I am trying to efficiently read from the stdin by using setvbuf in `_IOFBF~ mode. I am new to buffering. I am looking for working examples.
The input begins with two integers (n,k). The next n lines ...
5
votes
3answers
725 views
How to check if a PHP stream resource is readable or writable?
In PHP, how do I check if a stream resource (or file pointer, handle, or whatever you want to call them) is either readable or writable? For example, if you're faced with a situation where you know ...
5
votes
1answer
1k views
fgets() and fread() - What is the difference?
I understand the differences between fgets() and fgetss() but I don't get the difference between fgets() and fread(), can someone please clarify this subject? Which one is faster? Thanks!
5
votes
2answers
592 views
PHP fastest method of reading server response
im having some real problems with the lag produced by using fgets to grab the server's response to some batch database calls im making.
Im sending through a batch of say, 10,000 calls and ive ...
5
votes
4answers
960 views
A C# equivalent of C's fread file i/o
Can anyone tell me how to get a array of bytes into a structure in a direct fashion in C# .NET version 2? Like the familiar fread as found in C, so far I have not had much success in reading a stream ...
4
votes
2answers
69 views
Unable to read file using fread in C
I am trying to read a file "file.raw" and 4 bytes at a time to an array and check if it has the particular 4 byte signature I am looking for. I am having trouble with this. The value of result I get ...
4
votes
2answers
181 views
Safe maximum number of records read by fread
I am using fread to read a large chunk of image data (> 1 MB) from a file. I recently encountered a bug on MinGW with Windows network shares where a single call to fread like
fread(file, 4, 100000, ...
4
votes
1answer
118 views
Why DOES this code work and give correct results?
I have two files, one is called N.bin and the other is called R.bin. After couple of months of using it, I just noticed that I have a mistake there. However, I thought the system would crash because ...
4
votes
2answers
426 views
fread Only first 5 bytes of .PNG file
I've made a simple resource packer for packing the resources for my game into one file. Everything was going fine until I began writing the unpacker.
I noticed the .txt file - 26 bytes - that I had ...
3
votes
3answers
64 views
How do I disable buffering in fread()?
I am reading and writing to sockets using fread() and fwrite(). These functions, I believe are for buffered input and output. Is there some way that I can disable buffering while still using these ...
3
votes
3answers
83 views
C fread() magically reading dynamically allocated struct members, how?
This is a test program that I have written for a larger project that I am working on. It has to do with writing struct data to disk with fwrite() and then reading that data back with fread(). One ...
3
votes
3answers
145 views
Fread on Lion does not read when length > 2G
Since Macosx Lion fread does not read file with length > 2G (int size, 2'147'483'648 bytes).
It worked for years with macosx snow leopard.
I wrote a program to test it :
#include <stdio.h>
...
3
votes
4answers
68 views
What is C++ translation for Matlabs `fread(fp, 1, 'int32')` and fread(fp, n, 'uchar')
So I try to convert such Matlab code to C++:
ss = 'file.mask'
fp = fopen(ss, 'rb');
sx = fread(fp, 1, 'int32')
sy = fread(fp, 1, 'int32')
mask = zeros(sy, sx);
mm = mask(100, 100:200);
count = ...
3
votes
3answers
279 views
Using fread/fwrite for STL string. Is it correct?
I have a structure, that contain string. Something like that:
struct Chunk {
int a;
string b;
int c;
};
So, i suppose, that i cannot write and read this structure ...
3
votes
2answers
153 views
Lots of questions about file I/O (reading/writing message strings)
For this university project I'm doing (for which I've made a couple of posts in the past), which is some sort of social network, it's required the ability for the users to exchange messages.
At ...
3
votes
2answers
3k views
fread/fwrite string in C
I have a binary file which contains records. The structure of the file is as such:
Structure (see below)
Name String
Address String
The structure in question:
typedef struct{
char * name;
...
3
votes
3answers
925 views
What is the equivalent of 'fread' from Matlab in Python?
I have practically no knowledge of Matlab, and need to translate some parsing routines into Python. They are for large files, that are themselves divided into 'blocks', and I'm having difficulty right ...
3
votes
8answers
7k views
PHP - Returning the last line in a file?
I'm guessing it's fgets, but I can't find the specific syntax. I'm trying to read out (in a string I'm thinking is easier) the last line added to a log file.
3
votes
3answers
665 views
What is a good way to recover from a fread() failure?
If a call to fread() returns 0 and ferror() indicates an error (vs. EOF), is it OK to retry the read or is it better to close and reopen the file?
I can't start over entirely -- the input file has ...
2
votes
3answers
90 views
C using fread to read an unknown amount of data
I have a text file called test.txt
Inside it will be a number, it may be as follows:
1
2391
32131231
3123121412
I.e it could be any size of number, from 1 digit up to x digits.
The file will only ...
2
votes
5answers
62 views
How many random / sequential access per fread / fwrite?
I have the following question regarding C file I/O.
At a physical level (harddrive), is it valid to assume that every fread(n_blocks, size, length,FILE fp) operation should cost one random access for ...
2
votes
3answers
78 views
Reading and writing different values
Hello every one this is basically extension to my previous question. i have write the short int value in file using
short int x= 254;
FILE * f1 = fopen("infile" ,"w");
fwrite (&x , 1 , ...
2
votes
2answers
211 views
Fread Function in C programming
I want to ask 2 questions about fread function
I have read that fread is used to read binary file but I have read binary file with fgets with read mode "r" and text file with fread having "rb" mode ...
2
votes
1answer
50 views
php fread a file that is changing
Provided the following example code:
<?php
$handle = fopen("/tmp/test_file/sometestfile", "r");
$contents = '';
while (!feof($handle)) {
$contents = fread($handle, 10);
print $contents;
...
2
votes
1answer
240 views
Need explanation of reading and writing of wchar_t* to binary file
can someone explain me what is a proper way to write wchar_t* string to binary file and then read it back(using fread/fwrite)?
here is what i have (its working)
struct someStruct{
int someint;
...
2
votes
4answers
78 views
reading a block of lines in a file using php
Considering i have a 100GB txt file containing millions of lines of text. How could i read this text file by block of lines using PHP?
i can't use file_get_contents(); because the file is too ...
2
votes
3answers
333 views
Achieving an optimum 'fread' chunk size?
Alright, I know my question is not entirely specific, as an optimum fread chunk size is more of a trial error based thing. However, I was hoping some of you guys could shed some light on this.
This ...
2
votes
6answers
640 views
How to interrupt a fread call?
I have the following situation:
There is a thread that reads from a device with a fread call. This call is blocking as long as there is no data send from the device.
When I stop this thread it ...
2
votes
0answers
236 views
Why does fwrite have both size and count parameters when just bytes to write would suffice? [closed]
Possible Duplicate:
What is the rationale for fread/fwrite taking size and count as arguments?
In C, fwrite and fread take both the number of elements to write and the size of each element. ...
2
votes
2answers
240 views
fread() isn't writing to the buffer
#include <Windows.h>
#include <stdio.h>
int count = 0;
FILE* pFile = 0;
long Size = 0;
void *memfrob(void * s, size_t n)
{
char *p = (char *) s;
while (n-- > 0)
...
2
votes
2answers
241 views
What is C# analog of C fread()?
What is C# analog of C fread()?
In C code here we use
fread(inbuf, 1, AUDIO_INBUF_SIZE, f);
What could be its exact analog?
2
votes
3answers
275 views
Why does this code not output the expected output?
This can be a good question for finding bugs.
No? Okay for beginners at least.
#define SIZE 4
int main(void){
int chars_read = 1;
char buffer[SIZE + 1] = {0};
setvbuf(stdin, (char *)NULL, ...
2
votes
2answers
489 views
Read variable-length records from a buffer - weird memory issues
I'm trying to implement an i/o intensive quicksort (C++ qsort) on a very large dataset. In the interests of speed, I'd like to read in a chunk of data at a time into a buffer and then use qsort to ...
2
votes
5answers
2k views
Read data into a float array in C
i am making a program where i need to load some floating point data of the format from a file
103.45
123.45
456.67
......
i was wondering how to store these data directly into a array of floating ...
2
votes
2answers
327 views
c++ fread changing fgetpos strangely
If I run:
FILE* pFile = fopen("c:\\08.bin", "r");
fpos_t pos;
char buf[5000];
int ret = fread(&buf, 1, 9, pFile);
fgetpos(pFile, &pos);
I get ret = 9 and pos = 9.
However if I run
FILE* ...
2
votes
6answers
7k views
fread example from C++ Reference
I often use the website www.cplusplus.com as a reference when writing C code.
I was reading the example cited on the page for fread and had a question.
As an example they post:
/* fread example: ...
1
vote
1answer
49 views
segmentation fault while copying file
I'm a beginner and I'm trying to copy the content of a very large text file of size around 33MB ( 33136KB precisely ) to a new file. I'm getting segmentation fault while running the program. Only 16KB ...
1
vote
2answers
102 views
Why does fread mess with my byte order?
Im trying to parse a bmp file with fread() and when I begin to parse, it reverses the order of my bytes.
typedef struct{
short magic_number;
int file_size;
short reserved_bytes[2];
...
1
vote
1answer
91 views
fwrite segmentation fault - Invalid read of size 4
This is driving me crazy, so any help will be appreciated.
I am developing a program that scans for Wi-fi access points and manages them with different functionalities. One of those is to save the ...
1
vote
1answer
80 views
C reading from a live file ( file keep growing in size )
I have an application that is recording live , the capture file keep growing in size
using fread() and feof() , but feof() is breaking the loop early , so what's the best technique to keep reading ...
1
vote
1answer
94 views
How to convert jpg image to proper blob data type using php
<?php
$file_name = $_FILES['files']['name'];
$tmp_name = $_FILES['files']['tmp_name'];
$file_size = $_FILES['files']['size'];
$file_type = $_FILES['files']['type'];
// The codes written above ...
1
vote
3answers
143 views
using fread to read into int buffer
I would like to know if I can use fread to read data into an integer buffer.
I see fread() takes void * as the first parameter. So can't I just pass an integer
buffer (typecast to void *) and then ...
1
vote
2answers
93 views
I get segmentation fault reading infoheader on a BMP using fread. How do I fix this please?
This is got me pretty stuck, how do I fix this? I know I haven't got error checking, but they aren't required i'd guess since it's restricted to my desktop. It obveously can't be EOF. It's for the ...
1
vote
2answers
177 views
PHP fread not working after successful fopen, write and fclose
It's early in the morning and I'm just not getting this:
The following code works, and file is placed on the server:
$filename = $ioid . "_" . time();
$fp = fopen("$filename.csv", "w+");
foreach ...
1
vote
0answers
178 views
fread timeout with 'mod_fcgid: read timeout from pipe'
I have an issue with a URL my application is trying to access timing out. I am trying to catch this timeout and to solve this problem am using this code:
$timeout = 120;
if(false == $handle ...
1
vote
2answers
344 views
Proper way to read ELF files in C
first time posting here, Googled for a few hours and I couldn't find anything.
I am trying to write a client program that reads different files and sends them over the web to a server program. (For ...
1
vote
4answers
198 views
fread-ing uint16 in C++?
I'm trying to read use fread to read in values from an external file in C++. The values are stored as uint16's, which does not seem to exist in C++. I did some googling and found people using typedef ...