Perl
  Home arrow Perl arrow Page 5 - Perl: Appending and Writing to Files
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PERL

Perl: Appending and Writing to Files
By: James Payne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 7
    2007-11-14


    Table of Contents:
  • Perl: Appending and Writing to Files
  • Writing to Files
  • Overwriting Without Deleting Everything
  • How to Delete a File
  • More Ways to Test Files

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Perl: Appending and Writing to Files - More Ways to Test Files
    ( Page 5 of 5 )

    There are also ways to test if a file is read, writable, or executable:


    $my_file="superhero.txt";

    if (-r $my_file)

    {

    #whatever you want to occur if the file is readable

    }


    $my_file="superhero.txt";

    if (-w $my_file)

    {

    #whatever you want to occur if the file is writable

    }


    $my_file="superhero.txt";

    if (-x $my_file)

    {

    #whatever you want to occur if the file is executable

    }

    And lastly, if you want to test more than one you can use the OR (||), and AND (&&) (ow my brains!) operators.


    $my_file="superhero.txt";

    if ( (-e $my_file) && (-w $my_file) )

    {

    #whatever you want to occur if the file exists and is writable

    }

    Here is a table for a quick reference:

     

    File Checks

    What it Does

    -e

    Checks to see if the file exists

    -z

    Checks to see if a file size is zero

    -s

    Checks to see if a file size is not zero

    -r

    Checks to see if a file is readable

    -w

    Checks to see if a file is writable

    -x

    Checks to see if a file is executable

    -T

    Checks to see if a file is a text file

    -B

    Checks to see if a file is a binary file

    &&, ||

    And and OR Operators used to check if one criteria or another is true, or if this criteria AND that criteria are true

    All right folks. That's it for this section covering Files. In the next series we will cover how to work with Directories and possibly forms, time permitting.

    So swing by often.

    Till then...



     
     
    >>> More Perl Articles          >>> More By James Payne
     

       

    PERL ARTICLES

    - More Perl Bits
    - Perl, Bit by Bit
    - Basic Charting with Perl
    - Using Getopt::Long: More Command Line Option...
    - Command Line Options in Perl: Using Getopt::...
    - Web Access with LWP
    - More Templating Tools for Perl
    - Site Layout with Perl Templating Tools
    - Build a Perl RSS Aggregator with Templating ...
    - Looping, Security, and Templating Tools
    - Perl: Bon Voyage Lists and Hashes
    - Templating Tools
    - Perl: Number Crunching
    - Perl Debuggers in Detail
    - Debugging Perl





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek