主頁(yè) > 知識(shí)庫(kù) > perl文件操作的一些例子分享

perl文件操作的一些例子分享

熱門(mén)標(biāo)簽:買(mǎi)了外呼系統(tǒng)不想用了怎么辦 真人語(yǔ)音電銷(xiāo)機(jī)器人系統(tǒng) 電話機(jī)器人電話卡封號(hào)怎么辦 浦東上海400開(kāi)頭的電話申請(qǐng) 邯鄲外呼調(diào)研線路 開(kāi)封百應(yīng)電銷(xiāo)機(jī)器人聯(lián)系方式 樂(lè)昌電話機(jī)器人 北京語(yǔ)音電銷(xiāo)機(jī)器人價(jià)格 武漢呼叫中心外呼系統(tǒng)線路商

刪除文件

使用unlinke函數(shù),比如unlink $file, unlink $file1, $file2, $file3

打開(kāi)文件

使用三參數(shù)的形式打開(kāi)文件,這樣非常便于區(qū)分模式和文件名,perl 5.6之后的版本都支持這種方式。

復(fù)制代碼 代碼如下:

#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";

一次性讀入整個(gè)文件

使用>在標(biāo)量環(huán)境下一次讀入一行,而在列表環(huán)境下一次讀入所有行,$/存儲(chǔ)的是行分隔符,默認(rèn)是換行符,我們先將$/改掉,這樣就可 以在標(biāo)量環(huán)境下一次讀入所有行了(這時(shí)已經(jīng)沒(méi)有行的概念了,就是讀入整個(gè)文件),你也可以用列表讀入所有行然后再將所有行拼到一起,但那樣速度很慢。用完 記得將$/改回來(lái)。

復(fù)制代碼 代碼如下:

#!/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關(guān)鍵字來(lái)將$/設(shè)置為局部變量,這樣跳出作用域后,$/又恢復(fù)了原來(lái)的值。

復(fù)制代碼 代碼如下:

#!/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;

最好的方法是使用模塊,這樣比自己寫(xiě)安全,F(xiàn)ile::Slurp、IO::All都可以的。

打開(kāi)文件請(qǐng)用雙引號(hào)

open文件時(shí),如果文件名有變量替換,最好用雙引號(hào)而不是單引號(hào),因?yàn)閱我?hào)無(wú)視變量?jī)?nèi)插。

復(fù)制代碼 代碼如下:

open FILE "$file" or die $! ; #這樣可以。
open FILE '$file' or die $! ; #這樣就不可以,因?yàn)?file不會(huì)被解釋成變量?jī)?nèi)插。同樣也不會(huì)被解釋成輸入符號(hào)。

文件句柄作參數(shù)

假設(shè)有一個(gè)函數(shù)test,它有一個(gè)參數(shù),是某個(gè)文件句柄,那么該如何傳遞這個(gè)參數(shù)呢?

方法一,傳遞參數(shù)時(shí),在句柄前面加*

復(fù)制代碼 代碼如下:

sub main {
    open FILE, '+', 'test.data' or die $!;
    test(*FILE);
    close FILE;
}

方法二,使用open my $FILE的形式打開(kāi)文件

復(fù)制代碼 代碼如下:

sub main {
    open my $FILE, '+', 'test.data' or die $!;
    test($FILE);
    close $FILE;
}

標(biāo)簽:淄博 河北 鄂州 松原 六安 石嘴山 宜春 自貢

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《perl文件操作的一些例子分享》,本文關(guān)鍵詞  perl,文件,操作,的,一些,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《perl文件操作的一些例子分享》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于perl文件操作的一些例子分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章