Browse Source
This version seems to be buggy, the code I have on the repo probably isn't the newest code I have; I have to go looking through my backups to verify which is the most up-to-date version. I've included a sample script and settings file.C++
6 changed files with 42 additions and 1 deletions
Binary file not shown.
@ -0,0 +1,25 @@ |
|||
<?xml version="1.0"?> |
|||
<root> |
|||
<groups> |
|||
<group name="Testing 123"> |
|||
<directories> |
|||
<directory path="C:\" /> |
|||
</directories> |
|||
<extensions value="*.txt" /> |
|||
<script path="..\scripts\sample.py" /> |
|||
<delay value="5s" /> |
|||
<relativeScriptPath /> |
|||
</group> |
|||
</groups> |
|||
<preferences> |
|||
<editor> |
|||
<defaults> |
|||
<default name="System Default" /> |
|||
<default name="Sublime Text 2" /> |
|||
<default name="Notepad++" /> |
|||
<default name="NotePad" /> |
|||
</defaults> |
|||
<programs /> |
|||
</editor> |
|||
</preferences> |
|||
</root> |
@ -0,0 +1,3 @@ |
|||
def process_updated_files( files ): |
|||
for f in files: |
|||
print f |
Loading…
Reference in new issue