I\'m having a strange issue that I think I have a workaround for, but I\'m trying to do a root cause analysis on.
i m having problem in overwriting some data in a file in c++. the code i m using is int main(){ fstream fout;
I have a file of strings seperated by sp开发者_JS百科ace and I want to get those strings into an array of defined type but I get an error saying that fscanf doesn\'t take char**, does anyone know how
I have written some code to simulate the process of gaining share drive sizes. The drives come from a text file. The problem is that the paths get to a stage which exceed the 250? charachter limit. Is
This question already has answers here: Closed 11 years ago. Possible Duplicate: Cant Access File because it is being used by another process
recently i\'ve used Maxmind geoip to locate country & city based on the ip. It has huge content inside the dat files. but retrieving of those records happens within a seconds.so i\'m so curious to
i\'m starting an application with flash and ActionScript 3. I\'m opening a file for writing, but the process locks the file on the disk, so no other process can read it. I\'d like to make it so that
I am trying to locate a file on Machintosh without knowing exact file location. I am developing an app which needs to locate iTunes library XML 开发者_开发知识库file and parse it for data. However XML
I have a file that updates itself by appending,however this file becomes huge (500MB). I would like 开发者_C百科to read the last 50 lines in the file. How can this be done?Tail -n50 will return the la
How do I split a single text file with 1000 lines into multiple smaller files of, for example, 300 lines apiece? Please keep in mind that the original file may have more or less than a thousand lines.