Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. void RefreshText() {
  2. string line;
  3. filesystem::path file_path = "C:/Users/Toffer/Desktop/testfile.txt"
  4. auto file_time = filesytem::last_file_write(file_path);
  5. while (true) {
  6. if (filesytem::last_file_write(file_path) != file_time) {
  7. file_time = filesytem::last_file_write(file_path);
  8. PrintText(line);
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement