• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:”読み書きモード”なのに読めない???)

「読み書きモード」での動作について

このQ&Aのポイント
  • 「読み書きモード」での動作について調査しました。
  • 「+>」と「+<」の違いについて気になりました。
  • 「+>」での読み込みができない現象について調べましたが、原因が分からない状況です。

質問者が選んだベストアンサー

  • ベストアンサー
  • sakusaker7
  • ベストアンサー率62% (800/1280)
回答No.1

マニュアルに明記されてますよ。 perldoc -f open You can put a '+' in front of the '>' or '<' to indicate that you want both read and write access to the file; thus '+<' is almost always preferred for read/write updates--the '+>' mode would clobber the file first. You can't usually use either read-write mode for updating textfiles, since they have variable length records. See the -i switch in perlrun for a better approach. The file is created with permissions of 0666 modified by the process' "umask" value. '+>' のときは最初にファイルを0バイトにしてしまいます。 読み書きとはいっても、自分が書いたのをあとで読み返すというイメージですね。 > いまいちここを突っ込んでいる解説を発見できませんでした。 どういう意味? 中途半端な解説なら見つかったということでしょうか。

関連するQ&A