I have created a folder in Windows, C:\tmp\ and I want it to behave like /tmp/ folder in Linux, i.e. its contents are removed every time the system is booted.
I think the commands to run could be (at least on windows 7):
RD C:\tmp /S /Q
MKDIR C:\tmp
A way to execute this commands on every boot? Or, any better way to accomplish this?