perl檔案操作的一些例子分享

來源:互聯網
上載者:User

刪除檔案

使用unlinke函數,比如unlink $file, unlink $file1, $file2, $file3

開啟檔案

使用三參數的形式開啟檔案,這樣非常便於區分模式和檔案名稱,perl 5.6之後的版本都支援這種方式。

複製代碼 代碼如下:#Open the 'txt' file for reading
open FH, '<', "$file_name.txt" or die "Error:$!\n";
#Open the 'txt' file for writing. Creates the #file_name if it doesn't already exist #and will delete/overwrite a pre-existing file of the same name
open FH, '>', "$file_name.txt" or die "Error:$!\n";
#Open the 'txt' file for appending. Creates the #file_name if it doesn't already exist
open FH, '>>', "$file_name.txt" or die "Error:$!\n";
#Open the 'txt' file for a 'read/write'. #Will not create the file if it doesn't #already exist and will not delete/overwrite #a pre-existing file of the same name
open FH, '+<', "$file_name.txt" or die "Error:$!\n";
#Open the 'txt' file for a 'read/write'. Will create #the file if it doesn't already exist and will #delete/overwrite a pre-existing file #of the same name
open FH, '+>', "$file_name.txt" or die "Error:$!\n";
#Open the 'txt' file for a 'read/append'. Will create #the file if it doesn't already exist and will #not delete/overwrite a pre-existing file #of the same name
open FH, '+>>', "$file_name.txt" or die "Error:$!\n";

一次性讀入整個檔案

使用<>在標量環境下一次讀入一行,而在列表環境下一次讀入所有行,$/儲存的是行分隔字元,預設是分行符號,我們先將$/改掉,這樣就可 以在標量環境下一次讀入所有行了(這時已經沒有行的概念了,就是讀入整個檔案),你也可以用列表讀入所有行然後再將所有行拼到一起,但那樣速度很慢。用完 記得將$/改回來。

複製代碼 代碼如下:#!/usr/bin/perl
use strict ;
use warnings ;
sub test{
open FILE, '<', "d:/code/test.txt" or die $! ;
my $olds = $/ ;
$/ = undef ;
my $slurp = <FILE> ;
print $slurp, "\n" ;
$/ = $olds ;
close FILE;
}
&test() ;

也可以使用local關鍵字來將$/設定為局部變數,這樣跳出範圍後,$/又恢複了原來的值。

複製代碼 代碼如下:#!/usr/bin/perl
use strict ;
use warnings ;
sub test{
local $/ ; #??? local $/ = undef ;
open FILE, '<', "d:/code/zdd.txt" or die $! ;
my $slurp = <FILE> ;
print $slurp, "\n" ;
}
&test() ;
1;

最好的方法是使用模組,這樣比自己寫安全,File::Slurp、IO::All都可以的。

開啟檔案請用雙引號

open檔案時,如果檔案名稱有變數替換,最好用雙引號而不是單引號,因為單引號無視變數插入。

複製代碼 代碼如下:open FILE "<$file" or die $! ; #這樣可以。
open FILE '<$file' or die $! ; #這樣就不可以,因為$file不會被解釋成變數插入。同樣<也不會被解釋成輸入符號。

檔案控制代碼作參數

假設有一個函數test,它有一個參數,是某個檔案控制代碼,那麼該如何傳遞這個參數呢?

方法一,傳遞參數時,在控制代碼前面加*

複製代碼 代碼如下:sub main {
open FILE, '+<', 'test.data' or die $!;
&test(*FILE);
close FILE;
}

方法二,使用open my $FILE的形式開啟檔案

複製代碼 代碼如下:sub main {
open my $FILE, '+<', 'test.data' or die $!;
&test($FILE);
close $FILE;
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.