CICS525 / DBLikeProject

DBLikeProject
0 stars 1 forks source link

FileSysMonitor should track sub folder as well. #6

Closed Elitward closed 10 years ago

Elitward commented 10 years ago

Example: StartListen("D:\", callback) mkdir "D:\Temp" // should not trigger callback create file: "D:\Temp\New Text Document.txt" // should callback as "D:\Temp\New Text Document.txt", but now it callback as "Temp" only mkdir "D:\Temp\abc" // should not trigger callback create file: "D:\Temp\abc\New Microsoft Excel Worksheet.xlsx" // should callback as "D:\Temp\abc\New Microsoft Excel Worksheet.xlsx", but now no callback triggered.

achengscode commented 10 years ago

Finished, absolute paths and sub folders are tracked