1

Mac OS では、ファイルが他のアプリケーションによって変更された場合にのみ、ファイルを読み取るアプリケーションがあります。このために、fstatを使用してファイル変更のタイムスタンプをチェックしています。以下はコードスニペットです

  fstat(mHFile,&mCurrentTimeStamp);

  mCurrentTimeStamp.st_mtimespec.tv_sec will gives information up to seconds field DDMMYYY HR:MM:SS

  But mCurrentTimeStamp.st_mtimespec.tv_nsec is always 0. Because of this, if the application has modified below 1 second - I wont be able to read those kind of messages.

  Reading of messages which are modified with in 1 second duration is very important for my application.

  What i have to do for this?
4

1 に答える 1

0

ファイル システム イベント APIをご覧ください。

于 2013-05-31T06:42:16.103 に答える