fclose closes an open file resource, releasing it from memory and any write-locks on the file.

learn more… | top users | synonyms

1
vote
1answer
29 views

Wordpress not writting to folder using fwrite();

I have some php script that writes an html file to a folder. This works perfectly outside of WordPress. But when I try to incorporate my code into a plugin, it won't write to a folder anymore. I've ...
0
votes
1answer
43 views

*** Error in `./threads': corrupted double-linked list: 0x00000000009bb240 *** in fclose

I need to make a program that, at first, read a matrix from a text file and put it on memory. I was able to do so, but when I try to close files with matrix with 4 lines or more it gives the error: * ...
0
votes
4answers
120 views

how to replace some part of text from the text file in php

I'm trying to delete/edit some portion of text from text file, like if I have 10 lines in my text file then I want to edit 5th line or delete 3rd line without affecting any other line. Currently what ...
-1
votes
1answer
90 views

Segfault - fclose / fopen

I'm having trouble with my following C code : int main(void){ FILE* infile = fopen("file","r); FILE* fp = NULL; unsigned char* buffer = malloc(512); while( ...
0
votes
2answers
45 views

PHP Flock Writing to Open File

I have a php script that logs ads(banners) for a website and stores them to a .dat file. Inside this file an ID, URL, an other important information is saved. The problem I am having is that there ...
0
votes
0answers
54 views

Reading from .txt file and store it back into array

I have a contact.txt file that I created from here. FILE *cf; cf = fopen("contact.txt","w+"); for(x=0;x<10;x++) { fprintf(cf,"%d. Name: %s \n",x+1,name[x]); fprintf(cf," Home Number: %s ...
2
votes
3answers
76 views

How to detect, whether a FILE object is closed?

See the following code block, how I can make sure a FILE object is not closed before I call fclose on it? BTW, is it safe to call fclose twice? FILE* f = fopen('test.txt') //some code here, ...
0
votes
3answers
67 views

writing error log but I'm not sure how to organize it

I have two functions doing preg_match to check if the emp# and the email is valid. If one or both is not valid it will be printed to an error.log but I want to organize it in a way humm....let me see ...
2
votes
3answers
81 views

Overwrite file handle without using fclose() resulting drawback?

Do I need to close a file handle everytime I open a new file although I overwrite the file handle variable? e.g.: $fp = fopen("example.txt", 'w'); $fp = fopen("example.html", 'w');// is the file ...
-3
votes
3answers
90 views

Fclose causing seg fault in C [closed]

I keep getting a seg fault if and only if I attempt to close a file: FILE *outFilePtr = fopen(*(argv + 2), "w"); //open file, yes i'm sure it opens fclose(outFilePtr); //sometime later in the ...
1
vote
2answers
74 views

What (might) happen if I use fclose() when fopen() failed [closed]

Here is my relatively simple scenario, and I'm wondering if I can save myself a conditional and tidy the code up a bit. Its production code that someone else wrote and I'm just tidying up. It had no ...
0
votes
1answer
156 views

GlibC Double free or corruption (fclose)

I got an error on my C program on runtime. I found some stuff about "double free or corruption" error but nothing relevant. Here is my code : void compute_crc32(const char* filename, unsigned long * ...
1
vote
1answer
189 views

fopen, fwrite and fclose file size issue

I'm using fopen, fwrite and fclose to save a PNG onto my server using this code: ini_set('memory_limit', '128M'); $f = fopen('../../myFolder/myImage.png', 'w+'); fwrite($f, ...
0
votes
0answers
86 views

is sending a message to a php socket using fsockopen inefficient? strange slowdown on mysql query

I have a database system which uses sockets to send information about any changes being made to all connected clients with a php socket. I was occasionally getting slow responses, and I've finally ...
1
vote
1answer
33 views

C Programming File I/O doesn't print correct letters

Here's my code. After running this, out.txt just converts all the letters to 7s. So, it just shows 7777777777777. #include <stdio.h> #include <stdlib.h> int main() { FILE *fPtr; ...
0
votes
2answers
187 views

C: edit file to remove null characters:

I thought this would be an easy task, after a couple of tries I try the tried and true write to a temp than reopen and rewrite: #include <stdlib.h> #include <stdio.h> int main() { ...
0
votes
2answers
63 views

fprint doens't work in my php

I want to write some text from script in browser. <?php $out = fopen('php://stdout', 'w'); fprintf($out, "Hello!"); fclose($out); ?> I expect "Hello!" on output, but nothing happens...Could ...
0
votes
1answer
290 views

matlab: check if xls file is open

I tried to write a code that checks if the file is open. if so, while the file is not closed, a warning message will printed to the screen. I guess I didn't use the 'fclose' correctly because by this ...
2
votes
1answer
103 views

PHP clean memory after using fopen()

When i use fopen(); and then i use fclose(); does it just close file or also cleans memory?
0
votes
3answers
1k views

PHP Download file to server

I am trying to download images using curl from php, however instead of saving the image to the server it is just outputting random characters to the web browser screen, here's the code ...
1
vote
2answers
1k views

fclose Warning: fclose(): supplied argument is not a valid stream resource

I am getting the warning on my pages Warning: fclose(): supplied argument is not a valid stream resource Using the following code $fp = fopen('data.txt', 'w'); $write = '2'; fwrite($fp, $write); ...
1
vote
5answers
259 views

fclose() always returns EOF

I have a function that reads integers with certain format from a file. It works fine as desired, but whenever I tried to close the file with fclose(), fclose() always returns EOF. Any suggestions ...
0
votes
1answer
88 views

How To fopen and write to a specified section on a file

I can't seem to figure out how to make this script write data to the section of the file. Here is an excerpt of the code that applies: $file = $url.'.php'; if (!$file_handle = fopen($file,"a+")) ...
0
votes
1answer
493 views

fclose(): 18 is not a valid stream resource

I am trying to execute a process using proc_open. The I/O for the process is handled by the pipes !! $descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 ...
-2
votes
1answer
141 views

Using fwrite in PHP but outputs odd error [closed]

I am currently using fwrite, and this is what outputs as an error: Parse error: syntax error, unexpected ')' in /home/blah/blahblah.com/write/submit.php on line 5 The code goes like this: $strlen ...
5
votes
3answers
390 views

fclose works differently on android and linux

Following program: #include <stdlib.h> #include <stdio.h> #include <sys/stat.h> #include <sys/types.h> int main() { fclose( stderr ); printf( "%d\n", fileno( stderr ) ); ...
0
votes
1answer
238 views

How to check if a file size is greater than a determined number? [duplicate]

I want to use a if statement to check if a file size is greater than a determined number in kb. For example: if(filesize GTREATER than VARX){ DO }else{ DO } I'm new to C yet, so please, can you ...
1
vote
2answers
954 views

fwrite if file doesn't exist?

Is it possible to only write a file in PHP if it doesn't exist? $file = fopen("test.txt","w"); echo fwrite($file,"Some Code Here"); fclose($file); So if the file does exist the code won't write the ...
0
votes
2answers
3k views

Create a file if one doesn't exist - C

I want my program to open a file if it exists, or else create the file. I'm trying the following code but I'm getting a debug assertion at freopen.c. Would I be better off using fclose and then fopen ...
0
votes
2answers
123 views

fclose() seg fault

Why is simple function will cause seg fault? int main(int argc, char** argv) { FILE* file1; file1 = fopen(argv[argc + 1], "wt"); fclose(file1); } Thanks in advance for any help!
0
votes
1answer
2k views

PHP fopen($url,w)

$url="http://www.source.com/top"; $destination=fopen("/var/www/vhosts/domain.com/httpdocs/temp/" . date('m-d-Y'),"w"); echo "dest=$destination<br>"; echo "url=$url<br>"; ...
1
vote
1answer
824 views

*** glibc detected *** …: free(): invalid next size (normal): …*** after fclose();

I'm new to asking questions about programming, so if I am not doing something right / in the proper manner... please, do forgive me. I am used to "simple" ANSI C programming, but decided to try to ...
0
votes
3answers
980 views

C - writing output to a file

EDIT: void print(const int *v, const int size) { FILE *fpIn; fpIn = fopen("char-array.txt", "a"); int i; if (v != 0) { for (i = 0; i < size; i++) { printf("%d", (int)v[i]); ...
0
votes
1answer
540 views

fclose hang after cloned threads on Linux

When calling fclose on the global file descriptor, the program hang. It happened after exits of several threads created by clone. Below is the sequence: FILE * fid = fopen("filename", "w"); ... ...
0
votes
1answer
504 views

C - Working with fopen, fclose, fputc etc

I've got this code finally working with a single arguement on my command line, i.e. one file for it to work with, although I designed the code with the concept of it working with an unlimited number ...
-1
votes
2answers
133 views

Working with Text Files Two

A couple of questions really about the code below from which I gained assistance in a previous post. 1). Any ideas why at the end of the ouput, I get a random garbage character printed? I am freeing ...
2
votes
4answers
1k views

What happens to FILE pointer after file is closed?

I wish to know what happens to FILE pointer after the file is closed. Will it be NULL? Basically, I want to check if a file has already been closed before closing a file. For example as follows: ...
1
vote
3answers
634 views

File pointer will not initialize in a separate function (seg fault on fclose)

kk. i need to understand life. when i pass fp, a File pointer, into a new function, and open it there, fclose(fp) causes a seg fault! and i discovered that the file pointer, fp, was never opened. ...
0
votes
1answer
98 views

PHP Headers confusion

I've been banging my head against this one all day long. Time to ask for some help. So, I have a PHP script, which is a downloads page. Users have files they can download according to what they have ...
10
votes
4answers
3k views

What happens if I don't call fclose() in a C program?

Firstly, I'm aware that opening a file with fopen() and not closing it is horribly irresponsible, and bad form. This is just sheer curiosity, so please humour me :) I know that if a C program opens a ...
0
votes
3answers
115 views

could not determine size if fclose not done twice

I'm made a File class that is a sort of wrapper of the FILE type and added some methods. This is the code of my file class : #include <Fs/File.h> File::File(Path& p): ...
0
votes
5answers
2k views

why does fclose not set file pointer to NULL?

I was writing a RAII wrapper for FILE *. I noticed that when the FILE * is deleted after close in the destructor it leads to undefined behavior (seg. fault or errors somewhere else). I assumed that ...
0
votes
3answers
665 views

Seg Fault on fopen/fclose

I have a program that is creating multiple files. There is a function for each file being created. Within each function is the exact same code to create the file name, open/create the file for ...
1
vote
4answers
851 views

Does re-use of file pointers cause a memory leak?

It's been several years since I've dealt with C++, so bear with me... I have a memory leak in my program which causes a run-time error. Could this be causing the error? I have a global variable ...
8
votes
1answer
624 views

Why would fclose hang / deadlock? (Windows)

I have a directory change monitor process that reads updates from files within a set of directories. I have another process that performs small writes to a lot of files to those directories (test ...
0
votes
2answers
730 views

How do I eliminate duplicates from a CSV file using PHP's fgetcsv?

I am parsing a CSV file using fgetcsv, specifically using $line_of_text. I want to echo all the cities that have a shared country, but I want to eliminate city duplicates so that if, for example, ...
1
vote
1answer
731 views

why does PHP fopen + fwrite double document?

I am running PHP Version 5.3.4 with Apache/2.2.17 on Windows 7 Ultimate 32bit (IIS disabled). I been looking at the fopen modes and am well aware of what mode does what, but i can't wrap my finger ...
9
votes
1answer
17k views

ipad app exited abnormally with signal 11: Segmentation fault: 11

My app exited abnormally with signal 11. I don't know what that means. There is no crash log and the debugger shows no error. The app is just gone. I got the following log. Apr 27 21:31:31 ...
1
vote
4answers
161 views

removing a file in c

How do I close a file and remove it? I have the following code: FILE *filePtr = fopen("fileName", "w"); ... Now I want to close filePtr and remove the file "fileName". Should I: fclose(filePtr); ...
0
votes
2answers
606 views

Program crashes on fclose()

My program crashes on this part of code: if(fclose(_device) != SUCCESS){ cerr << "Output device library error CLOSING FILE\n"; exit(1); } It doesn't print anything, and when ...

1 2