You can provide instructions to Deez using the API calls listed here.
deleteFile(string _filePath)
- integer
- -1 (failure) or 0 (success)
# From inside a .nut file
...
<install>
<api call="deleteFile">C:/Temp/foo.bar</api>
</install>
...
makeDirectory(string _filePath)
- integer
- -1 (failure) or 0 (success)
# From inside a .nut file
...
<install>
<api call="makeDirectory">C:/Temp/foo</api>
</install>
...
removeDirectory(string _directoryPath)
- integer
- -1 (failure) or 0 (success)
# From inside a .nut file
...
<install>
<api call="removeDirectory">C:/Temp/foo</api>
</install>
...