Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.

shware wrote:1) Windows definitely isn't updating the timestamp on the rails' development.log. In Windows Explorer, I have to click on the file name to have the timestamp refresh. Very strange. Editing the file in notepad or UEStudio, the timestamp updates immediately. Not sure if this is a windows or ruby issue. Methinks it might be a Windows thing on files opened for exclusive writing


shware wrote:IMHO, if the polling interval is set to 0, then any files marked for polling should be treated normally in terms of File Change Detection.





using System;
using System.IO;
using System.Text;
using System.Collections.Generic;
class Program
{
static void Main(string[] args)
{
string line = "";
using (StreamWriter outfile = new StreamWriter("c:\\testing\\test_log\\junk_log.log")) {
do {
Console.Write("Enter a Line:");
line = Console.ReadLine();
if (line != null) {
outfile.Write(line + "\n");
outfile.Flush();
}
} while (line != "quit");
}
}
}
C:\Windows\system32>fsutil behavior query disablelastaccess
DisableLastAccess = 1
C:\Windows\system32>fsutil behavior set disablelastaccess 0
NOTE: Changes to this setting require a reboot to take effect.
DisableLastAccess = 0