0
votes
6answers
132 views
Opening a file with path in malloc
I'm trying to open a file with fopen, but I don't want a static location so I am getting the string in from the user when he/she runs the program.
However if a user does not enter …
0
votes
8answers
110 views
opening a file with fopen
I've been trying to open a file and output text, but I keep getting errors. So I thought I would start at the very beginning and just try opening the file. This is my code:
#inc …
0
votes
2answers
64 views
Fopen failing for binary file
I have a huge binary file which is 2148181087 bytes (> 2gb)
I am trying to do fopen (file, "r") and it failed with
Can not open: xyz file (Value too
large to be stored in …
3
votes
4answers
216 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 …
0
votes
3answers
44 views
php fopen disabled - alternative needed
My web host just disabled fopen()
My script used to open and write to a text file on the server, but no longer can.
Is there an alternative function to fopen?
0
votes
6answers
189 views
fclose() causing segmentation fault
I have a tab-delimited text file that I am parsing. Its first column contains strings of the format chrX, where X denotes a set of strings, e.g., "1", "2", ..., "X", "Y".
These a …
1
vote
4answers
90 views
Retrieve partial web page
Is there any way of limiting the amount of data CURL will fetch? I'm screen scraping data off a page that is 50kb, however the data I require is in the top 1/4 of the page so I re …
0
votes
2answers
66 views
Opening file in another directory in C
How is this achieved? I want to use
pFile = fopen( file, "rb" );
Where file is a char, string or long containing the literal text containing a local path to a binary file
C:\Do …
2
votes
2answers
123 views
Is there a way to use fopen_s() with GCC or at least create a #define about it?
Hi, MSVC compiler says that fopen() is deprecated and recommends the use of fopen_s()...
Is there any way to use fopen_s() and still be portable?
Any ideas for a #define?
Thanks …
0
votes
2answers
45 views
PHP Form writing to file in https://
Hiya
I'm having issues getting a php form to write to a file hosted with the apache httpsdocs folder. The form works just fine if all parts of it are using the http protocol, but …
0
votes
1answer
62 views
PHP: Emailing HTML Body of PHP Template file
I'm currently using PHP's mail() function to email the HTML Body of another PHP file using concatenation.
This is currently working fine, however, I would prefer the script to sim …
0
votes
2answers
88 views
Does fopen have a size limitation?
I'm having problems using fopen in php.
If I open the desired URL by hand I get:
OK,13:24:34.236 INFO [10] org.mortbay.http.SocketListener - Started SocketListener on 0.0.0.0:444 …
0
votes
4answers
124 views
Problem with hex literal in string comparison
I'm reading in an NES ROM file, where the first four bytes are "\x4e\x45\x53\x1a", or NES\x1a. In my actual code, the given file can be arbitrary, so I want to check to make sure t …
1
vote
7answers
216 views
Browser crashes when about around 4 million records entered in MYSQL.
hello all
I downloaded a database that was exported to the TXT format and has about 700MB with 7 million records (1 per line).
I made a script to import the data to a mysql databa …
0
votes
1answer
95 views
RTF Library - PHPrtf Has anyone used it?
For some reason, my line breaks in my test.txt file are not being preserved.
$sect->writeText(file_get_contents("test.txt"), $times12, $null);
Has anyone played around with …
