2014年10月29日 20:27
If running this on a non-Unix/non-Linux/non-MacOS platform, be sure to set binmode on the OUTFILE filehandle, refer to perldoc -f open and perldoc -f binmode
( もし 実行するなら これを 非 Unix/ 非 Linux/ 非 MacOS プラットフォーム上で, 必ず設定してください binmode を OUTFILE ファイルハンドルに, 参照してください perldoc -f open と perldoc -f binmode を )
# 書き込みモードでファイルハンドルをオープン
open ( OUTFILE, ">", "$file" ) or die "Couldn't open $file for writing: $!";
# 関数 read() でファイルを読み込み
while ( $bytesread = read( $filename, $buffer, $num_bytes )) {
# $totalbytes = $totalbytes + $bytesread
$totalbytes += $bytesread;
# バッファの内容を書き込み
print OUTEFILE $buffer;
}
# もし $bytesread の値が undef なら die
die "Read failure" unless defined( $bytesread );
# もし $totalbytes の値が undef なら
unless ( defined ( $totalbytes )) {
# エラーメッセージ
print "<p>Error: Could not read file ${untainted_finename},";
print "or the file was zero length.";
} else {
# $totalbytes が値が undef でなければ完了のメッセージ
print "<p>Done. File $filename uploaded to $file ($totalbytes bytes)";
}
# ファイルハンドルをクローズ
close OUTFILE or die "Couldn't close $file: $!";