perl檔案控制代碼

2021-10-14 11:27:18 字數 657 閱讀 4838

perl 雜湊操作

#	檔案控制代碼,標準檔案控制代碼有stdin  stdout  stderr  data  ar**  ar**out

# 建立名字為textfile的檔案控制代碼, < 表示讀檔案

open textfile,"<","a.txt";

while()

close textfile;

#open textfile1,">","b.txt"; #>表示寫檔案,如果檔案不存在,則會建立檔案,輸入文字覆蓋原有內容

open textfile1,">>","b.txt"; #>>表示寫檔案,如果檔案不存在,則會建立檔案,輸入文字追加原有內容

print textfile1 "hello";

close textfile1;

#die "失敗"; 表示停止執行,並輸出 失敗;

# if (! open file1,">>","c.txt") ;

# 把檔案a.txt中的內容寫入d.txt中

open textfile,"<","a.txt";

open textfile3,">>","d.txt";

while()

close textfile;

close textfile3;

perl 檔案控制代碼

控制代碼handle 分為檔案控制代碼和目錄控制代碼,檔案控制代碼實際上包含檔案,程序和套接字的讀寫。檔案控制代碼的操作步驟 open fd,filename lines close fd open 由以下幾個用法 open fd,filename 寫資料進檔案 open fd,filename 追...

Perl 檔案控制代碼

檔案訪問 open data,唯讀方式開啟,將檔案指標指向檔案頭。覆蓋形式寫入 追加形式寫入,末尾追加。讀寫方式開啟,先讀後寫 新增資料可使用seek 函式定位到要新增資料的位置,然後再寫入。讀寫,先寫後讀 先覆蓋形式寫入內容,然後再讀 操作結果 檔案中以前的資料被刪除,現在檔案中只保留目前寫入的資...

Perl檔案控制代碼詳解

在檔案i o中,要從乙個檔案讀取資料,應用程式首先要呼叫作業系統函式並傳送檔名,並選乙個到該檔案的路徑來開啟檔案。該函式取回乙個順序號,即perl檔案控制代碼 filehandle 該perl檔案控制代碼對於開啟的檔案是唯一的識別依據。要從檔案中讀取一塊資料,應用程式需要呼叫函式readfile,並...