perl open函数
Posted 路随时间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了perl open函数相关的知识,希望对你有一定的参考价值。
open(DATA, "<file.txt"); # <只读打开file.txt ,DATA作为句柄
open(DATA, ">file.txt"); # 写入方式
open(DATA, "+<file.txt"); #打开文件不清空它更新
open DATA, "+>file.txt" or die "Couldn‘t open file file.txt, $!"; #清空该文件
open(DATA,"+>>file.txt") || die "Couldn‘t open file file.txt, $!"; #打开文件追加
以上是关于perl open函数的主要内容,如果未能解决你的问题,请参考以下文章