read-file

Reading rewrited (mod_rewrite) files from php

Assuming you have only the URL to a file (hosted on the same server as the app) that has been rewritten via mod_rewrite rules. How would you read the contents of that file with PHP without having direct access to a .htaccess file or the rewrite rules used to building the original URL? I'm trying to extract all the script tags that have...

Flash Lite 1.1 Read File?

Is it possible to read a simple text file (stored on the mobile phone) with Flash Lite 1.1? ...

Is there an way to programatically read a file from a TrueCrypt disk into memory?

I need to load a file from an umounted TrueCrypt disk into memory. Is there any way to do this programatically? Does TrueCrypt offer an API? The way I believe is best for attempting this would be to mount the volume (prompting the user for a password, of course), open the file, and then unmount the volume. Is there a way to do this a...

How Can I read a file with both ASCII and another encoding in Java cleanly?

I have a custom image file where the first block of data is ASCII meta data. I need to be able to read this ASCII meta-data part of the file with Java and know when it ends, and when the 'raw image data' in another encoding starts. I was thinking of reading all of the file into a byte[], and then somehow either start reading bytes out ...

string replace in a large file with php

I am trying to do a string replace for entire file in PHP. My file is over 100MB so I have to go line by line and can not use file_get_contents(). Is there a good solution to this? ...

PHP: Fastest way possible to read contents of a file.

Ok, I'm looking for the fastest possible way to read all of the contents of a file via php with a filepath on the server, also these files can be huge. So it's very important that it does a READ ONLY to it as fast as possible. Is reading it line by line faster than reading the entire contents? Though, I remember reading up on this som...

Reading parameters from External file - C#

I am writing an application using C# and I would like to read some parameters from an external file like for example a text file. The parameters will be saved in the file in the form of parA = 5 parB = hello etc Can you pleas suggest a way how I can do this? ...

Matlab: how to read file using textscan?

Hi, I have a large tab delimited file (10000 rows, 15000 columns) and would like to import it into Matlab. I've tried to import it using textscan function the following way: function [C_text, C_data] = ReadDataFile(filename, header, attributesCount, delimiter, attributeFormats, attributeFormatCount) AttributeTypes = SetAttributeType...

C++ Read file line by line then split each line using the delimiter

I want to read a txt file line by line and after reading each line, I want to split the line according to the tab "\t" and add each part to an element in a struct. my struct is 1*char and 2*int struct myStruct { char chr; int v1; int v2; } where chr can contain more than one character. A line should be something like: ...