ファイルが変更されているかどうかを確認したい場合は、それを再度ロードします。このために、私はどこにも行かない次のコードから始めました...ファイルのタイムスタンプをC++で
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <iostream>
using namespace std;
int main()
{
struct stat st;
int ierr = stat ("readme.txt", &st);
if (ierr != 0) {
cout << "error";
}
int date = st.st_mtime;
while(1){
int newdate = st.st_mtime;
usleep(500000);
if (newdate==date){
cout << "same file.. no change" << endl;
}
else if (newdate!=date){
cout << "file changed" << endl;
}
}
}
すべてのコードは印刷同じファイルです。変更はありません。
'のようになります。ここ); – ybungalobill