The filehandle tag has no wiki summary.
1
vote
2answers
52 views
Perl file upload. How to access filehandle multiple times?
I am trying to detect if uploaded file is a valid UTF-8 and only after that do some operations with its content. It detects non-UTF-8 files ok, but if file is a valid UTF-8 there is no content to ...
1
vote
1answer
28 views
Groovy XmlParser -> Needs to be closed?
i am reading a xml- file with the groovy XmlParser e.g.:
def myXMLContent = new XmlParser().parse(new File("myFile.xml"))
But i don't find a close Method for the XmlParser. Don't i have to release ...
-1
votes
0answers
31 views
indexing a file from array of filehandlers
I am trying to write a string in a particular file indexed by an array of filehandlers in perl but I am not getting the string in file. The file every time remains blank. Kindly find my code below and ...
0
votes
1answer
56 views
print redirection to multiple output destinations
I'm looking for a way to reduce some print clutter in some of my scripts. I want some output to go to a file, some to the screen, and some to both. It's the "some to both" that is eluding me. Is there ...
2
votes
1answer
109 views
Pass file handle to cython function
I want to compile a python function with cython, for reading a binary file skipping some records (without reading the whole file and then slicing, as I would run out of memory). I can come up with ...
0
votes
1answer
97 views
Lib Gdx json serializationexception and missing no-arg constructor
When trying to execute this piece of code:
public void load(String filename) { FileHandle file =
Gdx.files.external(filename + ".bim"); Json json = new Json();
String text = ...
2
votes
3answers
153 views
Perl - while (<>) file handling [duplicate]
A simple program with while( <> ) handles files given as arguments (./program 1.file 2.file 3.file) and standard input of unix systems. I think it concatates them together in one file and workis ...
0
votes
1answer
38 views
Redirect to subroutine, not file or external command
I know I can open a filehandle and redirect it to a file like so:
open(HANDLE, ">", "filename.txt");
I can also redirect it to a command like the following:
open(HANDLE, "|-", "grep hello");
...
2
votes
1answer
91 views
Perl: how to prevent SIGALRM from closing a pipe?
My pipe (filehandle, socket) breaks (sometimes). I can reproduce it with the following code:
my $counter = 5;
alarm(1);
open(FH,"while(sleep 2); do date; done |") or die $!;
while (<FH>) { ...
1
vote
1answer
226 views
wkhtmltopdf using STDIN and STDOUT in Perl with Email::Mime
I am trying to generate a PDF for an order receipt on-the-fly from HTML that is also generated on-the-fly, then email it to someone.
I really don't want to create a file, attach it to an email, then ...
2
votes
1answer
34 views
does pythons tar file finalize a file added, or wait till its closed?
I apologize if the questions title is not clear.
I am creating a very large compressed TarFile using python.
I need to know if when using TarFile.Add() does that close and/or finalize the file ...
7
votes
1answer
115 views
Support autovivified filehandle as arguments to Perl XS routine
Question
How can I support autovivified filehandle arguments in an XS function?
I'm XS-wrapping a C function which returns a file descriptor, and I'd like to present that file descriptor as a perl ...
1
vote
2answers
111 views
Perl map function not working
i have a problem. This perl program should open all files and map them together, something similiar to paste command in unix system.
my @files;
for (@fileList ? @fileList : qw(-)) {
open ...
4
votes
2answers
90 views
Error when opening a file located in the same directory
I just started learning Perl and i'm having a problem related to opening a file that is in the same directory as my program.
#!/usr/bin/perl -w
$proteinfilename = 'NM_021964fragment.pep';
...
-1
votes
3answers
95 views
Send file handle as argument in perl
Is it possible to send a file handle as an argument to a sub routine in perl .
If yes can you help with a sample code snippet showing how to receive it and use it in the subroutine.
Thank you.
0
votes
1answer
49 views
filehandle options not coming up
I have typed the following code in from a tutorial and i cannot get it to work...
It says "No visible @interface for 'NSFilemanager' declares the selector .....
for the [fileHandle seekToEndOfFile]; ...
0
votes
1answer
201 views
Perl cannot close files on Windows?
I am encountering a very strange behavior.
My Perl program is trying to close some files on Windows. It turns out that the files do not close - and there is no error message.
How do I know that the ...
-1
votes
1answer
251 views
perl share filehandle with threads
I've found the code below online, it seems the way the program control the loop is to check the shared variable $TERM is 0 or not. Can I share a filehandle between threads, that every thread deal with ...
4
votes
1answer
87 views
Writing a large number of files from a long running process?
I have a project which scans a large file (2.5GB) picking out strings which will then be written to some subset of several hundred files.
It would be fastest just to use normal buffered writes but
...
4
votes
2answers
3k views
Open in Java(TM) Platform SE binary
I tried to delete a file that I have two of, one slightly changed, so I could delete the older one and replace it with the new one I changed. When I tried to delete the file I got the error message ...
3
votes
1answer
275 views
Perl: Pass open file handle to a program reading STDIN
I read a few lines from STDIN. How can I pass the remaining of STDIN to a command that reads from standard input (e.g. md5sum or wc)?
I could do a:
read_a_few_lines_from_diamond_operator();
open (C, ...
1
vote
2answers
514 views
perl: re-reading from already read filehandle
I opened a file to read from line by line.
open(FH,"<","$myfile") or die "could not open $myfile: $!";
while (<FH>)
{
...do something
}
later on in program, try to re-read the file (walk ...
2
votes
2answers
156 views
perl process filehandle
I am trying to learn how to read from a process using filehandles. I have tried to write a program that opens a filehandle from the 'date' command and reference that as requested using the following ...
0
votes
1answer
247 views
In Perl can I create my data in Excel worksheet instead of a text file. And use the character “|” as a delimiter
In Perl can I create my data in Excel worksheet instead of a text file. And use the character "|" as a delimiter. I am using the following code to create a text file
for(my $j = 0; $j < $num2; ...
1
vote
3answers
70 views
Why do I get a syntax error when I want to print to a handle in a hash key?
I have code which stores all the files handles for files in the current directory as values in a hash. The keys are the names of the files.
my %files_list; #this is a global variable.
sub ...
0
votes
0answers
145 views
getting the windows handle commandline tool to close a handle
Been trying to get the handle commandline tool to close a handle. Which it can according to the documentation http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx
usage: handle [[-a [-l]] ...
3
votes
2answers
500 views
How to derefence a copy of a STDIN filehandle?
I'm trying to figure out how to get a Perl module to deference and open a reference to a filehandle. You'll understand what I mean when you see the main program:
#!/usr/bin/perl
use strict;
use ...
0
votes
1answer
175 views
Debugging a Perl program: Hashes, Writing to and Accessing Filehandles
I'm working on a bioinformatics project that involves piping together different scripts and input parameters for the analysis of Next-Gen Sequencing Illumina data. I need help debugging the first ...
0
votes
3answers
155 views
perl while nest when read files
I want to compare two files so I wrote the following code:
while($line1 = <FH1>){
while($line2 = <FH2>){
next if $line1 > $line2;
last if $line1 < $line2;
...
2
votes
1answer
293 views
How can I use tie() to redirect STDOUT, STDERR only for certain packages?
I need to work with some libraries that unfortunately log diagnostic
messages to STDOUT and STDERR. By using tie, I can redirect those
writes to a function that captures those. Since I don't want all
...
3
votes
2answers
341 views
JNI issue: symbol lookup error by FileHandle in C++ DLL
I made JNI functions and linked them with the c++ dynamic library successfully. I got all of them working just fine, but I had an issue for one function, I got symbol lookup error from the FileHandle ...
0
votes
1answer
82 views
In a Windows DLL, how can I get a handle for the file which is already opened by the current process?
When my plugin DLL is loaded into the host application's address space, I need to write some data into a file. The problem is that at that point of time this file is already opened by the host process ...
2
votes
1answer
68 views
Game holds handle to wma file after exit
I have an xna game exported in a dll file. Everything to run the game (except the content) is in this library, especially the main game class.
In another assembly, I load the game dll, instantiate ...
1
vote
2answers
2k views
How to pass and read a File handle to a Perl subroutine?
I want a Perl module that reads from the special file handle, <STDIN>, and passes this to a subroutine. You will understand what I mean when you see my code.
Here is how it was before:
...
0
votes
2answers
154 views
How to read every four lines of .gz file in parallel with OpenMP?
test.fa.gz file contains multiple 4 lines as blow:
@HWI-ST298:420:B08APABXX:3:1101:1244:2212 1:N:0:TCATTC
GGCAAGGCACTTACTTTACAGCTAAAGAAGTGCAGC
+
@@@FDFFDFHCFDACGHC<<CCFEHHFCCFCEE:C?
What I ...
6
votes
5answers
574 views
Regex: How to remove extra spaces between strings in Perl
I am working on a program that take user input for two file names. Unfortunately, the program can easily break if the user does not follow the specified format of the input. I want to write code that ...
2
votes
3answers
91 views
iOS Efficiency File Saving Efficiency
I was working on my iOS app and my goal is to save a file that I am receiving from the internet bit by bit. My current setup is that I have a NSMutableData object and I add a bit of data to it as I ...
2
votes
1answer
447 views
Where does Ruby keep track of its open file descriptors?
What This Question Is Not About
This question is not about how to auto-close a file with File#close or the File#open block syntax. It's a question about where Ruby stores its list of open file ...
4
votes
1answer
149 views
Can Linux inotify be used on opened filehandles?
I'm familiar with how to use inotify to monitor for changes to named files within directories, but I'm currently wondering if it's possible to use it to watch for modifications of a file only known by ...
4
votes
1answer
196 views
Perl Cannot Binmode STDOUT After Untie Filehandle
I need to disable progressive buffering of an HTTP response.
I've got this working in Perl using a file handle class:
$|=1;
$TIE = tie(*STDOUT,__PACKAGE__);
Print statements are stored in an array ...
10
votes
2answers
644 views
What is the preferred cross-platform IPC Perl module?
I want to create a simple IO object that represents a pipe opened to another program to that I can periodically write to another program's STDIN as my app runs. I want it to be bullet-proof (in that ...
3
votes
1answer
462 views
Why I am getting “print() on closed filehandle with bad file descriptor” in my Perl script?
I have a tcp server in perl (revision 5.0 version 8 subversion 0) which use this subroutine to log in a file.
sub logger {
return if ($LOGFILE eq "") ;
my ($idt, $str) = @_ ;
...
0
votes
1answer
196 views
System Calls - How to find a character within a string, if he character exists
I'm extremelly new to System Calls. I think I can use Index but not quite sure how to implemented. Let's say I want to look up on a file with data for every ":" and '>"
for example I have a ...
0
votes
1answer
403 views
winsock socket as file handle
i have been scratching my head and been searching for an answer for this for hours now. Basically what I do is open a socket to some other machine and reading the data from it. This socket is than ...
-1
votes
1answer
445 views
storing failes: binmode() on closed filehandle $out at … print() on closed filehandle $out
see the update at the end of the intail posting
well i am a bit confued i have to admit...;-) being a novice perl-friend the perl-code allway looks a bit abracadaba....
i need to have some ...
1
vote
3answers
489 views
Usage of defined with Filehandle and while Loop
While reading a book on advanced Perl programming[1], I came across
this code:
while (defined($s = <>)) {
...
Is there any special reason for using defined here? The documentation for
...
2
votes
1answer
118 views
Program file handle
I have a program which set the number of file handle open to unlimited at the entry point of the program. When the program runs under root, i don't have any problem with the file handle. It can open ...
0
votes
3answers
856 views
Error with opening a filehandle
I have just begun working with Perl, I am only at the introductory level, and I have been having trouble with opening filehandles.
Here is the code:
#!/usr/bin/perl -w
$proteinfilename = 'peptide';
...
3
votes
2answers
276 views
Can I find a filename from a filehandle in Tcl?
Similar to Can I find a filename from a filehandle in Perl? but in Tcl.
I plan to cache filename-filehandle associations anyway, so I'm asking purely out of curiosity--particularly of the "operating ...
6
votes
2answers
1k views
Close all open files in ipython
Sometimes when using ipython you might hit an exception in a function which has opened a file in write mode. This means that the next time you run the function you get a value error,
ValueError: ...