Tagged Questions
fopen opens a file resource, in order to read, write or append content to it.
23
votes
5answers
8k views
C fopen vs open
Is there any reason (other than syntactic ones) that you'd want to use
FILE *fdopen(int fd, const char *mode);
or
FILE *fopen(const char *path, const char *mode);
instead of
int open(const ...
9
votes
2answers
786 views
SQLite VFS implementation guile lines with FOpen*
I am about to implement a custom VFS (virtual file system) for a Netburner embedded device (non windows) using FOpen, FRead, FWrite, FSeek, and FClose. I was surprised that i could not find a FOpen* ...
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
2answers
1k views
What are the biggest differences between fopen and curl?
I am making a web application in PHP and want to read content from a other domain.
For that i have to options fopen and curl but what are the differences like security / options etc.?
and what is the ...
7
votes
3answers
868 views
What encoding used when invoke fopen or open?
When we invoke system call in linux like 'open' or stdio function like 'fopen' we must provide a 'const char * filename'. My question is what is the encoding used here? It's utf-8 or ascii or ...
7
votes
4answers
780 views
Sqlite as a replacement for fopen()?
On an official sqlite3 web page there is written that I should think about sqlite as a replacement of fopen() function.
What do you think about it? Is it always good solution to replece application ...
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", ...
6
votes
3answers
157 views
Determine if an open file has been modified in C
Is there any way to determine if an open file has been modified under POSIX? More specifically, how could I implement is_modified() below?
FILE *f = fopen("myfile", "r+");
// do various things with ...
6
votes
4answers
229 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 ...
6
votes
5answers
184 views
Reading from a frequently updated file
I'm currently writing a program in python on a Linux system. The objective is to read a log file and execute a bash command upon finding a particular string. The log file is being constantly written ...
5
votes
3answers
724 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
7answers
533 views
fopen does not return
I used 'fopen' in a C program to open a file in readonly mode (r). But in my case I observed that fopen call does not return. It does not return NULL or valid pointer - execution gets blocked at fopen ...
5
votes
7answers
3k views
file_get_contents returns empty string
I am hesitated to ask this question because it looks weird.
But anyway.
Just in case someone had encountered the same problem already...
filesystem functions (fopem, file, file_get_contents) behave ...
5
votes
2answers
1k views
Write binary stream to browser using PHP
Background
Trying to stream a PDF report written using iReport through PHP to the browser. The general problem is: how do you write binary data to the browser using PHP?
Working Code
...
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
3answers
368 views
fopen fails invisibly when creating files in system drive (C:\)
Whenever I try to create a file using fopen, fopen acts as if the file has been opened properly and that it has full access to it, but it doesn't actually create the file. My program doesn't have ...
4
votes
3answers
733 views
unbuffered I/O in Linux
I'm writing lots and lots of data that will not be read again for weeks - as my program runs the amount of free memory on the machine (displayed with 'free' or 'top') drops very quickly, the amount ...
4
votes
4answers
159 views
PHP script gets progressively slower (file reader)
I have a script that, when put against a timer, gets progressively slower. It's fairly simple as all it does is reads a line, checks it then adds it to the database, then proceeds to the next line.
...
4
votes
3answers
703 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++;
}
...
4
votes
3answers
744 views
Do I use fopen or curl to load an XML file given a URL in PHP
I have an XML file I can get via a URL. I know I can get the file using fopen, but sometimes I've seen scripts use curl. Is there an advantage to using curl over fopen to get XML files?
4
votes
7answers
722 views
file doesn't open using PHP fopen
i have tried this:
<?php
$fileip = fopen("test.txt","r");
?>
this should have opened the file in read only mood but it doesn't
the test.txt file is in same folder as that of index.php ...
4
votes
5answers
4k views
_wfopen equivalent under Mac OS X
I'm looking to the equivalent of Windows _wfopen() under Mac OS X. Any idea?
I need this in order to port a Windows library that uses wchar* for its File interface. As this is intended to be a ...
3
votes
2answers
105 views
C - Array of Char Arrays
Im trying to work with the example in the K and R book for this topic, but struggling.
I want an array of Char Arrays, whereby each element of the 'Father' Array points to an array of characters ...
3
votes
2answers
149 views
Opening a Unicode file in pure C
I am trying to open a .txt file that is wholly Chinese. Can I use normal fopen/fclose procedures to it even though the stream would be 100% Unicode or are there any exlusive tools for handling wide ...
3
votes
6answers
240 views
Can multiple processes append to a file using fopen without any concurrency problems?
I have a process opening a file in append mode. In this case it is a log file. Sample code:
int main(int argc, char **argv) {
FILE *f;
f = fopen("log.txt", "a");
fprintf(f, "log entry ...
3
votes
3answers
113 views
PHP file downloading through ftp, how to do this with utf8 in mind?
There is a .TXT file with utf8 encoding (if i'm correct) on a external FTP server. I want to download this through a php script to my own ftp server.
So i wrote a script, but when i look at the .txt, ...
3
votes
1answer
107 views
When do you use fopen instead of open?
I don't find any difference through test.
What's the key to decide on this?
3
votes
3answers
436 views
How to get full filepath when uploading files in PHP?
I really want to know how am I gonna get the full filepath when I upload a file in PHP?
Here's my my problem...
I am importing a csv file in PHP. Uploading a file isn't a problem but the function ...
3
votes
3answers
755 views
Does fseek() move the file pointer to the beginning of the file if it was opened in “a+b” mode?
I wish to open a file using the "a+b" mode, i.e. if it does not exist it is created automatically, but if it does I don't want to overwrite it. I want to be able to read and write to the file.
The ...
3
votes
3answers
130 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
1answer
1k views
How exactly does fopen(), fclose() work?
I was just wondering about the functions fopen, fclose, socket and closesocket. When calling fopen or opening a socket, what exactly is happening (especially memory wise)?
Can opening files/sockets ...
3
votes
2answers
781 views
PHP: fopen failed “HTTP Request Failed”, but response header has a status code 200
I have a PHP script, that should connect to a proxy, chosen from a proxy list and download a file. Some of the proxies (out of 200-400 working ones) work perfectly, but others don't, and I cannot find ...
3
votes
2answers
121 views
How do I open a file in such a way that if the file doesn't exist it will be created and opened automatically?
Here's how I open a file for writing+ :
if( fopen_s( &f, fileName, "w+" ) !=0 ) {
printf("Open file failed\n");
return;
}
fprintf_s(f, "content");
If the file doesn't exist the open ...
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
4answers
133 views
Why is fopen() behaving like this?
I am currently working on this project which requires me to make a function which dinamically decides the directory name and then creates a simple .txt file in that directory.
my code is as follows:
...
3
votes
4answers
301 views
Is there a reason fopen() wouldn't work after several hundred opens?
Hey, for this piece of code, the person who wrote the system communicates data between processes using textfiles. I have a loops that looks (for all intents and purposes) like this:
while (true)
{
...
3
votes
2answers
349 views
Why does fopen fail the first time, but work the second time?
I am using Matlab to create a new file by calling
fid = fopen(filename,'w')
since filename doesn't exist, it should create a new file and give me a valid file descriptor. Instead it returns -1. ...
3
votes
3answers
194 views
Is fopen safe to use in public software?
I am creating a web application that I hope to release to the public for downloading and installing on anyone's own web server, however I just was informed that some webhosts disable the use of fopen ...
3
votes
11answers
282 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
4answers
599 views
In Windows, should I use CreateFile or fopen, portability aside?
What are the differences, and in what cases one or the other would prove superior in some way?
3
votes
8answers
2k views
how to read only 5 last line of the txt file
i have a file named "file.txt"
it updates by adding lines to it.
I am reading it by this code:
$fp = fopen("file.txt", "r");
$data = "";
while(!feof($fp))
{
$data .= fgets($fp, 4096);
}
echo $data;
...
3
votes
4answers
7k views
fopen / fopen_s and writing to files
I'm using fopen in C to write the output to a text file. The function declaration is (where ARRAY_SIZE has been defined earlier):
void create_out_file(char file_name[],long double *z1){
FILE ...
3
votes
3answers
436 views
segfault during fclose()
fclose() is causing a segfault. I have :
char buffer[L_tmpnam];
char *pipeName = tmpnam(buffer);
FILE *pipeFD = fopen(pipeName, "w"); // open for writing
...
...
...
fclose(pipeFD);
I don't do any ...
3
votes
3answers
2k views
In php, I want to download an s3 file to the browser without storing it on my server
I've got files on Amazon's S3. They are named with a unique ID so there are no duplicates. I am accessing them using an authorized URL. I need to be able to pass them through to the browser, but I ...
3
votes
5answers
1k views
PHP can't read files containing PHP code as text files
I've stumbled upon the following pecularity:
$handle = fopen(realpath("../folder/files.php"), "r");
can't read a file, but as soon as I remove php tags from the file,
it becomes readable and my ...
3
votes
2answers
1k views
Is there a standard way to do an fopen with a unicode string file path?
Is there a standard way to do an fopen with a unicode string file path?
2
votes
3answers
41 views
How to escape url for fopen
It looks like fopen can't open files with spaces.
For example:
$url = 'http://gatewaypeople.com/images/articles/cntrbutnssttmnts12_main 616x200.jpg';
fopen($url, 'r');
returns false (mind the ...
2
votes
4answers
40 views
Does it make sense to close a file that couldn't be opened
I'm reviewing code that was written by another developer. The code tries to open a file, and sets $canOpen based on success/failure.
$fh = @fopen('files.php', 'a+');
if (!$fh){
...
2
votes
4answers
134 views
Why does fopen(“any_path_name”,'r') not give NULL as return?
While debugging some code I got something like below:
#include<stdio.h>
int main()
{
FILE *fb = fopen("/home/jeegar/","r");
if(NULL == fb)
printf("it is null");
else
...
2
votes
2answers
479 views
PHP php_network_getaddresses: getaddrinfo failed: No such host is known
I am having DNS issues with a certain target domain. I am using fopen() (but same issue with other functions) to retreive an image, but I get this error:
Warning: fopen(): php_network_getaddresses: ...