1

I want to make a script on windows to move my files on folde1 to folder2 when i add some new file in folder 1, is it possible or at least any part of this?

arnausd
  • 25
  • 1
  • 7

2 Answers2

2

Concept is called DirectoryWatcher/FileWatcher, you can google it by these keywords for your programming language. It's represented in most languages now.

Ibraim Ganiev
  • 8,934
  • 3
  • 33
  • 52
2

Yes, it's possible. You can use:

  • Powershell (example)
  • Batch file, with or without task scheduler (example on link above)
  • Task Scheduler and a VBScript (example)
  • VBScript and WMI __InstanceModificationEvent event (reference)
  • .NET's FileSystemWatcher (example)
  • Third party software (some suggestions)
Community
  • 1
  • 1
Marcos Dimitrio
  • 6,651
  • 5
  • 38
  • 62