用open函数操作文件的问题

用open函数操作文件的问题

open(FILE, '+< test.txt') or die 'Can not open file: ', "$!\n";
while (<FILE>) {
   print;
}
close(FILE) or die 'Can not close file: ', "$!\n";

其中+<是对文件进行读写操作
那+>是什么意思呢?
有没有-<和->,那她们又是什么意思呢?
perldoc perlopentut
本版精华区有中文翻译


OK,看看