Tagged Questions
The filehandle tag has no wiki summary.
10
votes
6answers
12k views
How can I check if a filehandle is open in Perl?
Is there a way to check if a file is already open in Perl?
I want to have a read file access, so don't require flock.
open(FH, "<$fileName") or die "$!\n" if (<FILE_IS_NOT_ALREADY_OPEN>);
...
9
votes
2answers
284 views
Delphi - finding the process that is accessing a file from my program
I have a Delphi app that regularly writes to a local disk file. Occasionally it is unable to access the file - a sharing violation results when it tries to open it. A retry after a short delay is ...
9
votes
1answer
868 views
How do I determine whether a Perl file handle is a read or write handle?
You are given either an IO::File object or a typeglob (\*STDOUT or Symbol::symbol_to_ref("main::FH")); how would you go about determining if it is a read or write handle? The interface cannot be ...
8
votes
2answers
2k views
Can I find a filename from a filehandle in Perl?
open(my $fh, '>', $path) || die $!;
my_sub($fh);
Can my_sub() somehow extrapolate $path from $fh?
7
votes
3answers
437 views
How can I use __DATA__ twice?
How can I use __DATA__ twice?
#!/usr/local/bin/perl
use warnings;
use 5.012;
while ( <DATA> ) {
print;
}
while ( <DATA> ) {
chomp if $. == 1;
print scalar reverse;
print ...
7
votes
5answers
392 views
How can I test if I can write to a filehandle?
I have some subroutines that I call like this myWrite($fileName, \@data). myWrite() opens the file and writes out the data in some way. I want to modify myWrite so that I can call it as above or ...
7
votes
5answers
2k views
Why does Programming Perl use local (not my) for filehandles?
When I read through Programming Perl, 2nd Edition, Page 51, something confuses me :
sub newopen {
my $path = shift;
local *FH; #not my!
open (FH, $path) || return undef;
return ...
6
votes
3answers
200 views
Perl memory usage with map and file handle
Does calling map { function($_) } <FILEHANDLE>; load the entire file into memory when using perl?
6
votes
3answers
444 views
What is the difference between writing to STDOUT and a filehandle opened to “/dev/tty”?
What are the differences between this two examples?
#!/usr/bin/perl
use warnings;
use 5.012;
my $str = "\x{263a}";
open my $tty, '>:encoding(utf8)', '/dev/tty' or die $!;
say $tty $str;
close ...
6
votes
3answers
228 views
How can I tell a Perl function that takes a file to read from the special ARGV handle?
In perldoc perlvar, I read this:
Note that currently "ARGV" only has
its magical effect within the "<>"
operator; elsewhere it is just a plain
filehandle corresponding to the last
file ...
6
votes
2answers
193 views
How can I store and access a filehandle in a Perl class?
please look at the following code first.
#! /usr/bin/perl
package foo;
sub new {
my $pkg = shift;
my $self = {};
my $self->{_fd} = undef;
bless $self, $pkg;
return $self;
}
...
5
votes
2answers
81 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: ...
4
votes
2answers
326 views
How to open Perl file handle to write data via sudo (or as another user)
I'd like to write data to a file, but the file handle should be opened with access permissions for a specific user.
Thus, the following statement:
open (FH, "> $filename") or die "$@\n";
would ...
4
votes
2answers
201 views
Filehandle for Output from System Command in Perl
Is there a filehandle/handle for the output of a system command I execute in Perl?
4
votes
1answer
70 views
Is there a perl module that can start a process and return the three main I/O handles to that process?
In perl, I often need to run a child process, send some input to it, and then read its output. There are a number of modules to do this, but they all seem to require you to pass in pre-existing ...
4
votes
2answers
103 views
When does ref($variable) return 'IO'?
Here's the relevant excerpt from the documentation of the ref function:
The value returned depends on the type of thing the reference is a reference to. Builtin types include:
SCALAR
ARRAY
HASH
...
4
votes
3answers
451 views
How can a Perl subroutine distinguish between file names, file handes, *DATA, and *STDIN?
If I have a function that might be passed a file name or various file handles or typeglobs, how can the function distinguish among these arguments -- including telling the difference, for example, ...
4
votes
7answers
2k views
Why does Image.FromFile keep a file handle open sometimes?
I am doing a lot of image processing in GDI+ in .NET in an ASP.NET application.
I frequently find that Image.FromFile() is keeping a file handle open.
Why is this? What is the best way to open an ...
3
votes
3answers
90 views
Python equivalent of piping file output to gzip in Perl using a pipe
I need to figure out how to write file output to a compressed file in Python, similar to the two-liner below:
open ZIPPED, "| gzip -c > zipped.gz";
print ZIPPED "Hello world\n";
In Perl, this ...
3
votes
4answers
96 views
Writing to a file in perl
I want to write the key and value pair that i have populated in the hash.I am using
open(OUTFILE,">>output_file.txt");
{
foreach my $name(keys %HoH) {
my $values = $HoH{$name};
...
3
votes
1answer
99 views
How best to override/wrap core functions like sysread when they are called in another package
I'm working on a fairly complex application written in Perl. I'm fairly experienced with the language, but I'm just stumped on this.
I'm using a module, Foo, which uses sysread and syswrite for ...
3
votes
1answer
261 views
other than lsof, fast way to check if file open on os x
Is there a fast way to check if a file handle is closed from the command line on os x?
lsof works, of course, but is super slow.
3
votes
3answers
673 views
SSH with Perl using file handles, not Net::SSH
Before I ask the question:
I can not use cpan module Net::SSH, I want to but can not, no amount of begging will change this fact
I need to be able to open an SSH connection, keep it open, and read ...
3
votes
2answers
116 views
How can I treat many log files as one virtual file in Perl?
I've got multiple access logs in the logs directory, following the naming convention below:
access.log.1284642120
access.log.1284687600
access.log.1284843260
Basically, the logs are "rotated" by ...
3
votes
7answers
168 views
Appending to a global file handle, is it bad?
Lets say there are multiple functions throughout my program that need to append data to a certain file. I open the file at the beginning of the program with a global file handle so I can append to it ...
3
votes
4answers
135 views
How can I read from a method that returns a filehandle in Perl?
I have an object with a method that returns a filehandle, and I want to read from that handle. The following doesn't work, because the right angle bracket of the method call is interpreted as the ...
3
votes
4answers
443 views
Is there a way to access a string as a filehandle in php?
I'm on a server where I'm limited to PHP 5.2.6 which means str_getcsv is not available to me. I'm using, instead fgetcsv which requires "A valid file pointer to a file successfully opened by fopen(), ...
3
votes
3answers
212 views
How can I generate several Perl filehandles programmatically?
Is there any way in Perl to generate file handles programmatically?
I want to open ten files simultaneously and write to them by using file handle which consists of (CONST NAME + NUMBER). For ...
3
votes
3answers
449 views
Access to Perl's empty angle “<>” operator from an actual filehandle?
I like to use the nifty perl feature where reading from the empty angle operator <> magically gives your program UNIX filter semantics, but I'd like to be able to access this feature through an ...
3
votes
6answers
3k views
How can I process a multi line string one line at a time in perl with use strict in place?
I'm trying to figure out the proper PBP approved way to process a multi line string one line at a time. Many Perl coders suggest treating the multi line string as a filehandle, which works fine ...
3
votes
1answer
548 views
On iPhone, how can I use fileHandle to download a mp3 file on the fly?
I am trying to implement the AudioFileStreamSeek feature on my streaming app. But there is no way I can get this running. Even Matt Gallagher said on his blog:
Icidentally, the ...
3
votes
4answers
2k views
Can I read and write to multiple filehandles simulateously (Perl)?
I'm trying to read from two files, and generate output in a third. I first wanted to edit the first one on the go but I didn't find a suitable method save for arrays.
My problem is that the third ...
3
votes
3answers
820 views
How can I redirect the output from one filehandle into another?
I want to set up a pipeline of processes from within Perl (running on Linux), consisting of two parts run at separate times.
Eg:
Start the consumer process:
open( OUT, "| tar xvf - " ) || die ...
3
votes
7answers
837 views
Explicitly close file handles or let the OS close them in Unix C programming?
In Unix C programming, is it considered good practice to explicitly close file handles before the process exits, or is it instead good practice to let the OS close the file handles and thus avoid ...
3
votes
2answers
2k views
Changing the value of stdout in a C++ program
I have a Windows C++ program that is doing something like:
FILE* pf = ...;
*stdout = *pf; // stdout is defined in stdio.h
I'm looking for an explanation about what happens when you change ...
2
votes
1answer
29 views
Testing re-installation - I need a method/program that holds onto files
I'm writing a wix installer and I need to test the reinstall process. The program that I'm installing has files which can be in use by a second program.
I want to test what will happen if the common ...
2
votes
2answers
92 views
Open filehandle or assign stdout
I'm working in a program where the user can pass a -o file option, and output should be then directed to that file. Otherwise, it should go to stdout.
To retrieve the option I'm using the module ...
2
votes
1answer
81 views
Referencing a FileHandle as an Array
Given that I have a 4GB file I need to process, is there a way in Perl where I can reference a filehandle like an array without copying it into an actual array/memory?
Something like:
open (LOG, ...
2
votes
3answers
155 views
Perl: creating zombies through open() without close()
Here is the problem:
I've a daemon which get requests from a client, executes a function (from some module) due to the request and returns an answer to the client.
After the fork() i close ...
2
votes
3answers
380 views
How to get the name of a file from a file handle in Windows using C?
I'm trying to retrieve a file name from a given file handle.
I've seen that GetFileInformationByHandle could be useful, but the structure it returns does not contain any file name information ...
2
votes
3answers
241 views
Read file into variable in Perl [closed]
Possible Duplicate:
What is the best way to slurp a file into a string in Perl?
Is this code a good way to read the contents of a file into a variable in Perl? It works, but I'm curious if ...
2
votes
2answers
177 views
Problem with piped filehandle in perl
I am trying to run bp_genbank2gff3.pl (bioperl package) from another perl script that
gets a genbank as its argument.
This does not work (no output files are generated):
my $command = ...
2
votes
0answers
131 views
OSX Custom extension icon Association
I'm trying to get my application to display an icon for a custom file extension using the following code:
<key>CFBundleDocumentTypes</key>
<array>
<dict>
...
2
votes
1answer
30 views
Ensure a file is not changed while trying to remove it
In a POSIX environment, I want to remove a file from disk, but calculate its checksum before removing it, to make sure it was not changed. Is locking enough? Should I open it, unlink, calculate ...
2
votes
4answers
204 views
Java File Handling, what did I do wrong?
Wrote up a basic file handler for a Java Homework assignment, and when I got the assignment back I had some notes about failing to catch a few instances:
Buffer from file could have been null.
File ...
2
votes
2answers
59 views
Determine how much can I write into a filehandle; copying data from one FH to the other
How to determine if I can write the given number of bytes to a filehandle (socket actually)? (Alternatively, how to "unread" the data I had read from other filehandle?)
I want something like:
n = ...
2
votes
4answers
1k views
ant error Unable to rename old file to temporary file
I'm using ant 1.8.0 and java 1.6.0.17 and I'm running into a strange problem.
In my build.xml, I have a simple task that compiles the code
<javac destdir="${dir.build.classes}" debug="on">
...
2
votes
8answers
246 views
How can I avoid Perl::Critic warnings when I process a multi-line string with a filehandle?
Does anyone have a solution to the task of processing a multi-line string one line at a time, other than the string-as-a-filehandle solution shown below?
my $multiline_string = "line one\nline ...
2
votes
1answer
625 views
Getting a file path from a file handle in Windows
In Windows, is there a straightforward way to get the full path of a file, given only the file's handle?
I can't use GetFinalPathNameByHandle() because that's Vista+ only and our product has to work ...
2
votes
4answers
1k views
How can I suppress STDOUT temporarily in a Perl program?
Is there any easy way to tell perl "now ignore everything that is printed"?
I have to call a procedure in an external Perl module, but the procedure prints a lot of unnecessary information (all ...