Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
854 views

C program stuck on uninterruptible wait while performing disk I/O on Mac OS X Snow Leopard

One line of background: I'm the developer of Redis, a NoSQL database (http://code.google.com/p/redis). One of the new features I'm implementing is Virtual Memory, because Redis takes all the data in ...
11
votes
1answer
198 views

fwrite chokes on “<?xml version”

When the string <?xml version is written to a file via fwrite, the subsequent writing operations become slower. This code : #include <cstdio> #include <ctime> #include ...
9
votes
5answers
3k views

Overwrite Line in File with PHP

What is the best way to overwrite a specific line in a file? I basically want to search a file for the string '@parsethis' and overwrite the rest of that line with something else.
7
votes
4answers
1k views

End of FILE* pointer is not equal to size of written data

Very simply put, I have the following code snippet: FILE* test = fopen("C:\\core.u", "w"); printf("Filepointer at: %d\n", ftell(test)); fwrite(data, size, 1, test); printf("Written: %d bytes.\n", ...
5
votes
2answers
89 views

Optimizing massive writes to disk

I have a C app (VStudio 2010, win7 64bit) running on a machine with dual xeon chips, meaning 12 physical and 24 logical cores, and 192 gig of ram. EDIT: THE OS is win7 (ie, Windows 7, 64 bit). The ...
5
votes
3answers
740 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
3answers
705 views

What is the best way to write a large file to disk in PHP?

I have a PHP script that occasionally needs to write large files to disk. Using file_put_contents(), if the file is large enough (in this case around 2 MB), the PHP script runs out of memory (PHP ...
4
votes
3answers
720 views

Writing a new line to file in PHP

My code: $i = 0; $file = fopen('ids.txt', 'w'); foreach ($gemList as $gem) { fwrite($file, $gem->getAttribute('id') . '\n'); $gemIDs[$i] = $gem->getAttribute('id'); $i++; } ...
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
2answers
174 views

fwrite() File Corruption C++

I'm somewhat of a newbie to C++ (moving from C#) so I'm not exactly sure what's going on here. What I'm trying to do is read an image out of a file and write it to an output file, but whenever I do ...
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
3answers
133 views

Efficiency of fopen() with 'a' option in PHP

If I write fopen($myfile, 'a'), and $myfile is a very large file, will the server have to read the entire file in order to return the pointer to the end of the file? Or does it quickly find the ...
3
votes
3answers
178 views

Is fopen() limited by the filesystem?

I wrote a program to generate large .SQL files for quickly populating very large databases. I scripted it in PHP. When I started coding I was using fopen() and fwrite(). When files got too large ...
3
votes
11answers
284 views

What's the best way to write to more files than the kernel allows open at a time?

I have a very large binary file and I need to create separate files based on the id within the input file. There are 146 output files and I am using cstdlib and fopen and fwrite. FOPEN_MAX is 20, so I ...
3
votes
2answers
154 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
2answers
1k views

MATLAB FREAD/FWRITE

I want to change the value of a couple of bytes in a large binary file using matlab's fwrite command. What I am trying to do is open the file using fopen(filename,'r+',precision) then read down the ...
3
votes
3answers
5k views

2GB limit on file size when using fwrite in C?

I have a short C program that writes into a file until there is no more space on disk: #include <stdio.h> int main(void) { char c[] = "abcdefghij"; size_t rez; FILE *f = ...
3
votes
3answers
477 views

Writing BMP data getting garbage

I'm working on understanding and drawing my own DLL for PDF417 (2d barcodes). Anyhow, the actual drawing of the file is perfect, and in correct boundaries of 32 bits (as monochrome result). At the ...
2
votes
2answers
70 views

How do I use fwrite to write the data 0xf0f0f0f0

I need to use fwrite to write a delimiter = 0xf0f0f0f0 to a binary file. It needs to be done in such a way that 0xf0f0f0f0 appears at the beginning of the file when viewed in xxd on UNIX. I'm ...
2
votes
5answers
49 views

fwrite not fwriting when saving contents of a textarea to a file

I'm making an online text editor - just a simple one for my own stuff. I'm trying to write code to save the contents of a textarea to a file - first the file is opened into the textarea (which works ...
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
1answer
118 views

Atomic file replacement in Python

What's the recommended way to replace a file atomically in Python? i.e. if the Python script is interrupted, there is a power outage etc. files do not have a high probability of ending up in an ...
2
votes
6answers
360 views

C++ fwrite doesn't write to text file, have no idea why?

I have this code that basically reads from file and creates new file and write the content from the source to the destination file. It reads the buffer and creates the file, but fwrite doesn't write ...
2
votes
1answer
179 views

How to Prompt Save As Dialog Box After Creating Word Document With Fopen and Fwirte in PHP

I wrote the following script so that an end-user can create a word document from text entered into a textarea: $fp = fopen("yourDoc.doc", 'w+'); fwrite($fp, $wordDoc); fclose($fp); Basically, the ...
2
votes
1answer
250 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
249 views

PHP Fwrite writing from beginning without removing

I am using PHP and fwrite code, but I want every write position to start from the beginning of the file without erasing it's content. I am using this code but it is writing to the end of the file. ...
2
votes
2answers
197 views

Translate array values write to file php

I have a google language translate PHP class you can see here My array file like this: $lang['FORUM_LOCK'] = 'Lock'; $lang['FORUM_EDIT'] = 'Edit'; $lang['FORUM_POST'] ='Post'; ... I want to loop ...
2
votes
5answers
245 views

fwrite() does not override text in Windows (C)

I write this C code so that I could test whether fwrite could update some values in a text file. I tested on Linux and it works fine. In Windows (vista 32bits), however, it simply does not work. The ...
2
votes
3answers
229 views

How to make fwrite() consistent in writing data to a file

I am writing data to a file, however on sudden power offs I can see garbage data in the file sometimes. Sometimes the data is missing, sometimes it is editted and sometimes its a garbage data just ...
2
votes
4answers
1k views

fopen returns NULL pointer?

I'm working on a simple file splitter/merger program in C language. The problem is, for some reason fopen returns NULL, and because of that, my program is crashing at the fwrite statement. Has anyone ...
2
votes
1answer
189 views

Writing data to file adds ^M at end of line

Using PHP i'm writing content to a .htaccess file using fwrite, this all works correctly but when i view the .htaccess in Vim afterwards it displays ^M at the end of each line that has been added. ...
2
votes
5answers
277 views

PHP fwrite always returns the number of bytes to be written even if the file doesn't exist, is this expected behaviour?

I have the following example code <?php `echo test > /tmp/test.txt`; $f=fopen("/tmp/test.txt","w+"); `rm /tmp/test.txt`; var_dump(fwrite($f,"test")); fclose($f); ...
2
votes
3answers
197 views

a single C function to write data as text or binary

I have a C function that writes some data to a text file. The data consists of floats, ints and strings. it looks something like this: writeAsTextFile( mystruct_t* myStructWithIntsFloatsAndStrings ...
2
votes
0answers
237 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
3answers
334 views

How to update an ini file with php?

I have an existing ini file that I have created and I would like to know if there was a way to update a section of the file or do I have have to rewrite the entire file each time? Here is an example ...
2
votes
2answers
211 views

Help with exploding a name in PHP and writing back into a .CSV file

I wrote the code below to split up a fullname from a .csv file into a first name, middle name, and last name. It works well and gives the following kind of output: Eric,T.,Nolan Mary,,Worth ...
2
votes
2answers
279 views

PHP New Line will not work

Hi I am trying to create some code that first reads the existing contents of the file in and then adds the new line of code on a new line but the code i am using just adds it on the new text on to the ...
2
votes
5answers
189 views

saving information in file in php

i want to write a tracking system and now i can save in my Mysql database . but saving information about each ip that visits is a huge work for mysql so i think if i could save the information in ...
2
votes
4answers
766 views

Why is fwrite writing more than I tell it to?

FILE *out=fopen64("text.txt","w+"); unsigned int write; char *outbuf=new char[write]; //fill outbuf printf("%i\n",ftello64(out)); fwrite(outbuf,sizeof(char),write,out); printf("%i\n",write); ...
1
vote
3answers
46 views

PHP: File writing issue

I'm trying to make a function that writes a list of scores for players. For example: player_1 100 12 12 10 player_2 39 13 48 29 And when players beat (or do worse) than their previous scores, ...
1
vote
3answers
37 views

mkdir() warning generated even though script was successful

I'm creating a content management system whereby the user can create categories and sections dynamically through an interface. It's PHP and MySQL driven - when the user clicks the form to submit the ...
1
vote
2answers
20 views

Trimming the unused items from buffer[] before fwrite

I am creating a file with the content depending on some local variables. I don't know how long the file will be at the end. Since I define a buffer[] array with a fixed size, the last characters in ...
1
vote
2answers
19 views

fopen fprintf dosnt write to file only after closing it

how to enable the writing to file befor closing it , i have this code to write to file , is does it but only after i close the app and it gets to the distractor its part of simple logger. what i ...
1
vote
2answers
63 views

Printing to the terminal in a encoding neutral manner

I would like to print a string to the screen regardless of its encoding (UTF-8,16,32). This string is represented in a char array so I need to ignore null bytes and carry on printing to stdout; this ...
1
vote
1answer
92 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
2answers
50 views

capture the fwrite return value to a variable

"fwrite() returns the number of bytes written, or FALSE on error. " can the return value be captured in variable? can the return values be added up for a total? how can i capture the value of the ...
1
vote
1answer
76 views

fwrite not writing

$fp = fopen('log.txt', 'w'); fwrite($fp, 'Missing gallery image for: ' . $row['toolbar_id'] . '\n'); The code above is not writing to the file. the $row['toolbar_id'] is a value from a for each ...
1
vote
8answers
254 views

What's more efficient - storing logs in sql database or files?

I have few scripts loaded by cron quite often. Right now I don't store any logs, so if any script fails to load, I won't know it till I see results - and even when I notice that results are not ...
1
vote
2answers
447 views

PHP fwrite function to write txt file in utf-8 encoding

i have made a form where a user writes his message in arabic and submits it by a submit button. The message is saved in database and i need to create a .txt file on the server for some other ...

1 2 3 4