The file-processing tag has no wiki summary.
11
votes
6answers
5k views
Randomly Pick Lines From a File Without Slurping It With Unix
I have a 10^7 lines file, in which I want to choose 1/100 of lines randomly
from the file. This is the AWK code I have, but it slurps all the file content
before hand. My PC memory cannot handle such ...
8
votes
6answers
211 views
How to perform a SQL-like Join in Perl?
I have to process some data by combining two different files. Both of them have two columns that would form a primary key that I can use to match them side-by-side. The files in questions are huge ...
4
votes
7answers
897 views
How can I get exactly n random lines from a file with Perl?
Following up on this question, I need to get exactly n lines at random out of a file (or stdin). This would be similar to head or tail, except I want some from the middle.
Now, other than looping ...
3
votes
2answers
133 views
Splitting command line args with GNU parallel
Using gnu parallel: http://www.gnu.org/software/parallel/
I have a program that takes two arguments, e.g.
$ ./prog file1 file2
$ ./prog file2 file3
...
$ ./prog file23456 file23457
I'm using a ...
2
votes
3answers
109 views
Is Awk and multiple file processing possible?
I need to process two file contents. I was wondering if we can pull it off using a single nawk statement.
File A contents:
AAAAAAAAAAAA 1
BBBBBBBBBBBB 2
CCCCCCCCCCCC 3
File B contents:
...
2
votes
3answers
341 views
.NET Webservice processing large file is having its thread aborted
Let give you the details of this rather odd issue.
We have a very large text file to process, it is 780MB and is likily to get bigger.
The processing of this file lies in a .NET WebService, a request ...
2
votes
2answers
121 views
How to search a file for a pattern and get a new file from the match point to end of file?
I need to take a file and find the first occurrence of a literal string pattern as a complete line of the file:
Acknowledgments:
And then I wish to create a new file from the line of match all the ...
2
votes
5answers
100 views
Editing files in PHP
Is there a way to append or remove a line of text from a file using PHP.
I am in the process of writing a hosting control panel for my specific web hosting stack and would like to be able to make ...
2
votes
2answers
2k views
How to prevent file from being overridden when reading and processing it with Java?
I'd need to read and process somewhat large file with Java and I'd like to know, if there is some sensible way to protect the file that it wouldn't be overwritten by other processes while I'm reading ...
1
vote
1answer
41 views
How to ensure a VERY delayed AJAX call is read properly
I have a File which process many other files and may take upto 30mins to process. I do an AJAX request to the file in the front end. The file outputs to another temporary file regarding the percentage ...
1
vote
2answers
90 views
Need advise on text-processing flow
I've been a research programmer (MATLAB) for most of my programming career, writing things for only myself that can be run on my own computer. Now, I'd like to be able to have people submit a ...
1
vote
1answer
427 views
batch file to copy files from one server to other adding remote directory to filename in process
I've written a batch file to copy files from one server to another, however, i need to be able to rename the file just copied to contain the folder path. The code i have come up with to do the job ...
1
vote
3answers
60 views
Are there any open source projects for managing parallel asynchronous projects?
I am currently working on a project where we need to distribute file processing across multiple machines in order to distribute load. Basically, we'll have an FTP server where files are dropped and we ...
1
vote
4answers
140 views
Fastest and best method for importing file contents into a database
I have folders where approx 3000 new csv files come in on a daily basis, each containing between 50 and 2000 lines of information.
Currently, there is a process in place which picks these files up ...
1
vote
4answers
267 views
Higher level file read/write with Objective-C
As Objective-C is superset of C, I guess I can use fopen/fread/fwrite/fprint... just like I do with C.
Does that mean that Objective-C doesn't have its unique file processing function?
1
vote
2answers
94 views
Processing a binary file - templated functions problem
I've created a small tool which is used to process binary files. All the functions involved in reading the files and processing them are templated and are similar to this:
template <class T> ...
1
vote
1answer
294 views
File Processing with Workflow Foundation
I have been tasked with building a new workflow system to handle our service orders. I have been investigating Windows Workflow Foundation as the engine for managing the workflow steps, and like what ...
1
vote
2answers
354 views
Appending to a HTML log file in PHP
I am trying to append to a log file, using HTML tables format for each incident. However, there is one difficulty which I am not sure how to solve. Here's a static output of the HTML
<table>
...
1
vote
4answers
249 views
How can I properly parse my file? (Using break/continue)
I have the following data that looks like this for example:
34 foo
34 bar
34 qux
62 foo1
62 qux
78 qux
These are sorted based on the first column.
What I want to do is to process ...
0
votes
0answers
36 views
+100
How do I read a large file from disk to database without running out of memory
I feel embarrassed to ask this question as I feel like I should already know. However, given I don't....I want to know how to read large files from disk to a database without getting an outofmemory ...
0
votes
1answer
73 views
C++: File Processing: matching sequential files
I have a small problem. I have three files, OldMaster, Transaction and NewMaster. If the account numbers match between OldMaster and Transaction, I update the balance and write it to NewMaster. If ...
0
votes
1answer
50 views
How to remove all code from multiple VB6 .frm files and leave form design?
I have a large VB6 app with many .frm files. I want to basically 'gut' the code from all the forms and just leave the GUI design.
What would be the best way to perform this task quickly?
0
votes
1answer
63 views
Binary file processing using ESBs (WSO2, Mule, Petals, Service Mix)
I'm keen to use an ESB (probably WSO2, Mule, Petals or Service Mix) on a new project.
I have a number of business processes/ workflows which will work well in an ESB: however I'm struggling with ...
0
votes
3answers
63 views
taking input from a file
i have the following file named asmfile.txt
copy start 1000
read ldx zero
rd indev
rloop tix k100
in order to take linewise input from this file i wrote the following code....
void ...
0
votes
1answer
93 views
file processing (for file with more than one fields) and problems associated with it
here is a code i wrote to create the symtab of a sic/xe .asm file....
#include<iostream>
#include<fstream>
#include<iomanip>
#include"aviasm.h"
using namespace std;
void ...
0
votes
0answers
170 views
Creating a symbol table from an assembly file
I am writing code to create the symtab of an sic/xe assembler. The code I wrote is like this (note: the code is not correct which is why I am here, but I have pointed out wherever I think there is a ...
0
votes
1answer
72 views
file processing(input from a file)
i have a simple text file with columns first name, last name and nickname...i was trying to get the inputs from each row in the file in a c++ program....then a problem cropped up...i had left out ...
0
votes
1answer
66 views
How can determine the next number to assign a file when attempting to organize a directory?
I am working on a perl script to organize a folder we have that holds all of our order documents. The script works for the most part except for a curve ball someone threw at me the other day.
The ...
0
votes
0answers
69 views
Suggestions for faster file processing?
I have a cluster of 4 servers. A file consists of many logical documents. Each file is started as a workflow. So, in summary a workflow runs on the server for each physical input file which can ...
0
votes
4answers
122 views
Skipping lines using file_get_contents?
I'm trying to skip the first 2 lines (from reading 3 files) then save back (I already got this done, all that's left is the line skipping)
Is there any way to do this?
0
votes
4answers
125 views
how to delete a line(record) from a file using php
I want to delete a line which has unique id at the end of the line. how to delete the line? Is there any implementation of sed or awk in php? my file structure is as follows
1 0 * * * echo -n "cron ...
0
votes
1answer
74 views
Is there a 3rd party .NET library/assembly that will parse & import files using a metadata-driven approach?
I need to parse a bunch of delimited flat files and import them into a database. I could build my own simple metadata-driven parser and importer but figure there must be something like this out there ...
-1
votes
1answer
177 views
filestream processing in c++(tellg() function)
i wrote the following code....
#include< iostream>
#include< fstream>
using namespace std;
int main()
{
ifstream in("text1.dat",ios::in);
enum choice{zero=1, credit, debit, ...
-1
votes
4answers
279 views
Read special line from txt file in j2me
I have a text file, for example : file.txt, I want to read a line, for example line 7, have any way to read directly line 7 without reading other lines? I want to save memory from this work.
-2
votes
1answer
56 views
How do loop through and open *.frm files in VB6?
In VB6, how can I loop through all the .frm files in a folder and do something to each of them?
-2
votes
1answer
44 views
pattern match processing of multiple .frm files
I have multiple VB6 .frm files. See example below. I want to strip away the functions and subs from the code and leave only the form design.
What I need to do is find the last line starting with ...
-2
votes
2answers
61 views
File reading in C++ [closed]
I am working on the image processing through c++, I has to read the header of jpeg image in char format, I has to check the camera/system/device information of image, how can i do it.