file read function in C and PHP
0
votes
3answers
43 views
read signed int from a bin file in C gives me wrong results
I want to read data from a .bin file. Actually If I preview the data of my bin file I see something like this:
0000000 3030 3030 3030 3730 300a 3030 3030 3030
0000010 0a35 ...
1
vote
4answers
38 views
fread a single int from bin file gives me a segmentation fault in C
I want your help in something that should be easy and I do not know why it does not work. I want to read the first data from a bin which I know that it is an int. I am using the following part of ...
0
votes
3answers
49 views
How to read first 256 bits from a file to store them in two arrays
I am coding a cipher, for which key file is 256 bit long. Out of which 128 bits have to go in key and 128 into IV.
I am explicitly defining the sizes of those arrays and then reading, and still ...
-1
votes
1answer
36 views
How can I use fread() to load the contents of a file into the second element of an array of strings in C?
I am having some trouble understanding how pointers work in a particular situation. The details of my confusion are outlined below.
I have created a character array of 8-byte strings named buffer and ...
0
votes
2answers
21 views
file_get_contents() from external sources
Today I uploaded a file to my server. Within that file I had echo file_get_contents('/anotherPage.php'); I was presuming that the method would only get the html of the document but the method not only ...
0
votes
5answers
35 views
C - Finding end of file BEFORE reading
I have a class that reads "blocks" from a binary file. I use it this way :
while(log.HasNextBlock()) {
block = log.GetNextBlock();
}
My problem is that i need to check inside of the function ...
0
votes
1answer
16 views
Finding mpeg 2 packages in matlab with fread
I used a ts analyzer for a .ts file i have with mpeg-2 codec and i found out that it splits in 7311 packets.
I m trying to find this through matlab by using fopen to open the ts file in binary and ...
0
votes
2answers
57 views
Can i use fgetc() or fputc() in a binary file?
I am creating an archive program in C, and i want it to save files i provide, list and extract them.
I had many issues because i used a text file for saving, and it is not the best choice if i want ...
0
votes
2answers
20 views
How to use fopen, feof, and fread to manipulate multiple files?
I have a file (fullsoccer.txt) which has 500 links (online links for XML files) I call those links and then I pass each one to a function that open the link then read the content and then passing the ...
0
votes
2answers
34 views
Can I pass multiple links to fopen, fread and feof?
I have the following function :
function doParse($parser_object) {
$links=file("./fullsoccer.TXT", "r");
$i=0;
while(!empty($links[$i]))
{
set_time_limit(0);
if ...
0
votes
1answer
18 views
how to pass links to fread in php?
I have a 500 link to xml files (online files) I want to pass those files to a function that read the content of these files, parse them and then store them in my database (mysql).
I use this function ...
-1
votes
2answers
38 views
Why using fread() the 2-nd time it reads a file not from beginning but from the end of reading by the 1-st fread()?
I'm want to fill hdr (struct) variable with data from in.wav file and I want to copy the first 64 bytes of in.wav file to another file (out.wav).
But! When using fread() the second time it starst to ...
0
votes
1answer
17 views
reading bit by bit from a binary file with c
I need to read 256 bit for each step until binary file ends.Is there any operation in c to read bit by bit? I use fread function and read 32 chars. For all chars i shift bit by bit for 8 times. After ...
0
votes
1answer
37 views
Matlab -> Python. Reading heterogeneous 1D binary array from disk
Say we have a simple, small file with a 1D array holding different value types, with a specific structure (first item is MATLAB uint, second value is MATLAB uint, and the rest of values are float)
...
-3
votes
5answers
57 views
fread function reads only about 700kb
I am trying to open and read 4 MB bin file,
but I couldn't use fread to read more than ~700 KB.
Actually I want to open and read genesis ROM file
which is binary format that reading should be from ...
0
votes
1answer
50 views
fseek and fread on a file containing a list of parts
I have a file containing a list of parts and part numbers. What I need to do is display the name of the part at a location given by a file pointer and an integer. Something like sizeof(part) * n and ...
0
votes
4answers
58 views
Reading elements from a struct with fread()
I'm trying to read the header of a BMP file and then display it's contents.
struct BMP *bmp;
bmp = (struct BMP*)malloc(sizeof(struct BMP));
if(bmp)
{
fread(bmp,sizeof(struct ...
0
votes
1answer
33 views
Matlab: read in part of binary data
I have a data set(binary file) which i want to read only the first half of X (and corresponding Y) data which is saved to 4D matrix:
for i = 1:vols
for j = 1:cols
XY(i,:,:,j) = ...
0
votes
0answers
56 views
Compiler optimizations when reading a file
I'm starting to write a c++ program that is supposed to read a large binary file (several gigabytes). As a start, my program just does fread() inside a loop to read into an array of doubles:
double ...
0
votes
0answers
52 views
fread() in C fails to read beyond 131,072 bytes with sleep(1)
I am trying to read a file in 1000 byte chunks. I have a sleep in the reading loop. The file reads only till 131,072 bytes (which is 2^17 ).
If I remove this sleep, it reads till actual end of file ...
0
votes
0answers
73 views
replace fgets with fread but still count lines
I'm reading two files byte by byte and I need to find first difference for UNIX in C.
I wrote program for text files with fgets.
I need to replace fgets with fread ,because I need to read binary files ...
0
votes
1answer
72 views
data.table::fread and Unbalanced "
When I tried to read a csv file using data.table:fread(fn, sep='\t', header=T), it gives an "Unbalanced " observed on this line" error. The data has 3 integer variables and 1 string variable. The ...
1
vote
2answers
101 views
Reading integers with fread in ANSI C
I am writing a program in C, and I am reading a text file using fread and I cannot read correctly integers.
The value of a in the text file is 16, the output I get is:
a= 538976288
I have used ...
0
votes
0answers
20 views
How to create new data (txt) files automatically once current txt file has reached a max byte size
I tried but couldn't find that answer for this.
I have a form writing to a txt file (names, age, etc, etc.).
How can I automatically stop writing to the current data(txt) file based on a max byte ...
0
votes
0answers
25 views
hdparm and disk read speed
My hdparm -t buffered disk reads output is around 120 MB/sec. However, I was writing a little code that involves reading a big file (around 400MB), when I managed to read it all in about one second ...
0
votes
2answers
43 views
Using fread & fwrite, in relation to binary
I'm having trouble getting to understand why my code is not working as intended, and I'm sure it has to do with my understanding of fread and fwrite.
Here is a snippet of my code, excuse the ...
1
vote
1answer
86 views
pclose() on file descriptor opened with popen() returns errno 10 (No child processes)
I'm running linux and I try to do the following:
Run ls on current directory (using popen)
Output the result to buffer (using fread from pipe descriptor)
close pipe (using pclose).
Everything ...
1
vote
2answers
70 views
fread into array of structs segmentation fault
I've been working on this code for awhile now and I've run into a seg fault that I can't seem to debug. Here's the relevant code:
typedef struct Halo* Halo;
struct Halo
{
float x, y, z;
...
0
votes
2answers
59 views
read from binary file and copy into array
its time over but anyway i want finish this problem. I want read binary file to buffer and later i want copy this buffer to array. I'm doing like that;
int i=0;
char *buffer;
buffer=(char ...
0
votes
2answers
54 views
How to read contents of a bin file until there is no data left
I have to read a binary (.bin) file. This file has video data that is the RGBA data. Each component is compose of 4096 bytes and are of type unsigned char. Hence i open the file and read the file as ...
0
votes
1answer
51 views
Trouble using fread to change struct value C
My problem here is that, I think..., everything works fine, but the actual block variable isn't changing. It is of BLOCK size, which is 512 bytes, the first for bytes of which are listed as ...
0
votes
3answers
110 views
MATLAB to Python fread
What I am basically trying to do is convert from some MATLAB code to Python:
The MATLAB code:
for time = 100:model_times
for i = 1:5
indat = fread(fid,[48,40],'real*4');
...
0
votes
0answers
70 views
C++ fseek/fread for mapped files
All the time I used the following code to get bytes from a file:
unsigned char *nEncodedBytes = NULL;
FILE *file =fopen(szFileName,"rb");
if (file)
{
fseek( file,iFirstByteToRead, SEEK_SET);
...
0
votes
3answers
89 views
double free or corruption error when using fread in c++
So basically I was writing a test program to see if I could write and read a vector of queues into a binary file using fwrite and fread respectively. Even though the reading and writing part is done ...
-3
votes
1answer
99 views
How does fread know when the file is over in C?
So I'm not entirely sure how to use fread. I have a binary file in little-endian that I need to convert to big-endian, and I don't know how to read the file. Here is what I have so far:
FILE ...
0
votes
0answers
59 views
parse error before = token [closed]
I am trying to open and read a file into a char buffer
FILE *fp=NULL;
char buffer[10];
int i,x;
fp = fopen("data.txt", "r");
fread(buffer,SIZE,nElements,fp);
Where SIZE and nElements are #defined ...
-2
votes
1answer
65 views
opening/reading a text file in c
Hello i am running this C program on linux using gcc -Wall -std=c99 and a./out. I do not get any warnings/errors. But when i print my information read from a file i get crazy outputs. the file ...
-1
votes
3answers
62 views
fread() reads from current file and old file
When I use this code
FILE *f = fopen(file, "rb");
const char *d;
if (f!=NULL) {
static char c[100000];
fread(c, sizeof(char), 10000000, f);
d = c;
fclose(f);
return d;
}
else{
...
0
votes
0answers
41 views
fread different behaviour on windows VS Linux
I read 8 bytes each time from a file.
the problem is in Windows, when It comes to the last bytes - it finds it less than 8 bytes so fread don't work and returns 0 . so I miss one or more characters ...
1
vote
3answers
54 views
Reading from file to array
I am trying to read from a file. I am using fread(), but I'm unsure whether I'm going about this correctly. I want to create an array of structs and continue "f-reading" from the file into the array ...
0
votes
5answers
164 views
C++ fwrite and fread for string
here's the piece of code that writes a string in a binary file:
std::string s("Hello");
unsigned int N(s.size());
fwrite(&N,sizeof(N), 1 ,bfile);
fwrite(s.c_str(),1, N ,bfile);
fflush(bfile);
...
0
votes
1answer
73 views
fread causing segmentation fault
Trying to create a file of 1024 bytes of random data. When I run this, I get a segmentation fault error on the fread line. Anyone see what I am doing wrong? Thanks!
#include <stdio.h>
#include ...
0
votes
1answer
242 views
Reading a file into a string buffer and detecting EOF
I am opening a file and placing it's contents into a string buffer to do some lexical analysis on a per-character basis. Doing it this way enables parsing to finish faster than using a subsequent ...
0
votes
1answer
100 views
sending image file in C [duplicate]
I use this code to send binary file for my little HTTP server
/* send binary data to client */
void send_binary(int sock_fd, char *file_name)
{
int buff_size = 10240;
char buff[buff_size];
...
1
vote
1answer
117 views
C - popen() and fread() causing accept() to throw an error
I am very new to C so sorry if I am really confused.
I am trying to have a server process fork() another process to run a C program through popen(). But as soon as I attempt to read the bytes, I get ...
-3
votes
3answers
30 views
What is the meaning of “find%4==0”?
void searchcontact()
{
int l,i;
char query[20];
system("cls");
do
{
find=0;
printf("Contact Search\n Name of the Contact:\n");
fflush(stdout);
...
0
votes
2answers
150 views
How can I use fread() on a binary file to read the data into a std::vector?
Follow-up question on an earlier question I had, that has been perfectly answered. To quickly recap, I had trouble creating a class holding a huge array (stack overflow error). In the answers, some ...
0
votes
3answers
97 views
Why does my program crash when using fread in the constructor?
I have a small program, written in C++ that contains a class with a large array. The class looks like this:
class Test
{
public:
Test();
...
private:
int myarray[45000000];
};
Now, this ...
1
vote
2answers
97 views
most portable ways for memory allocation and freading arrays in C
Just wondering what is the soundest way to allocate memory and freading from a file in C.
First, an explanation:
int32_t longBuffer;
Now, when freading in the longBuffer, the code could go as:
...
-1
votes
2answers
101 views
C fread fwrite at the beginning of a file [closed]
I would like to know if it's possible to write data at the beginning of a file using frwite. Let me be more precise, I open a file using fopen then I write some data to it with write. Just before ...


