Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do you open a file for writing?

Answer Posted / raj

Files are opened using the open and sysopen function.
Either function may be passed up to 4 arguments, the first
is always the file handle thenfile name also known as a URL
or filepath, flags, and finally any permissions to be
granted to this file.

$FH = "filehandle";
$FilePath = "myhtml.html";

open(FH, $FilePath, permissions);
or
sysopen(FH, $FileName, permission);

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain strftime() function in perl?

875


How to check the status of airplane mode (enable/disable) in perl for Android mobile?

3031


Differentiate between arrays and list in perl.

946


We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?

2401


What happens when you return a reference to a private variable?

937


What is 'commit' command in perl?

1034


Explain lists ?

880


What does next statement do in perl?

927


How many types of primary data structures in Perl and what do they mean?

1327


Suppose an array contains @arraycontent=(‘ab’, ‘cd’, ‘ef’, ‘gh’). How to print all the contents of the given array?

919


Explain subroutine in perl?

850


You want to connect to sql server through perl. How would you do that?

883


Explain the difference between "my" and "local" variable scope declarations. ?

979


Does Perl have reference type?

892


How many loop control keywords are there in perl?

888