3
votes
2answers
125 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 …
2
votes
8answers
140 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 = "l …
0
votes
1answer
52 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 …
1
vote
3answers
212 views
Releasing Open FileHandles in C#
Hi all,
I have a third-party component that copy an image and opens it for a certain task, but it seems that it's no releasing the file handle.
I've read the documentation of tha …
2
votes
4answers
2k 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 …
6
votes
5answers
468 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 u …
1
vote
6answers
290 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, wh …
2
votes
4answers
273 views
Can I read and write to multiple filehandles simulateously (Perl)?
Hi,
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 prob …
3
votes
1answer
119 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, th …
0
votes
5answers
150 views
Reading a file using javascript
How do I read contents from a server side file using javascript?
1
vote
5answers
186 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 in …
1
vote
4answers
78 views
Blocking file-read in php?
I want to read everything from a textfile and echo it. But there might be more lines written to the text-file while I'm reading so I don't want the script to exit when it has reach …
0
votes
8answers
252 views
How do I add lines to the top and bottom of a file in Perl?
I want to add a line to top and bottom of the file. I can do it following way.
open (DATA, "</usr/old") || die "cant open old\n"; #file to which line has to be added
my @body …
0
votes
4answers
364 views
How to release a handle through C#?
I have an application that IMPLICITLY opens a handle on a dll/file. At some point in the application, I want to release this handle. How can I do it? My application is in C#.
1
vote
2answers
134 views
How do I find if it is the last line while reading a file from within a loop in perl
I am working on a log parsing script using Perl. I am reading the log file as follows:
open(LOGFILE, "$logFile") || die "Error opening log file $logFile\n";
while(<LOG …
