ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Coding Snacks

How to automatically move specific files from c:\users\username\documents

<< < (2/3) > >>

tomos:
With SyncBackPro, you'd have to check if excluding sub-folders is an option. (In Syncovery I can select what subfolders to in/ex-clude.)

Re the memory usage:
in this day and age, memory usage at that level (~30mb) doesnt seem significant (to me at any rate).

FWIW:
I may be completely wrong, but you give the impression that you dont have an effective backup strategy, re local backup at any rate. If you have files of any importance that you modify, it's worth considering and looking at the monitoring possibilities of your backup software.

mouser:
A full fledged backup tool seems excessive for this task.  One of skrommels or skwires AHK wonders seems like it would fit the bill.

wraith808:
theres a program called belvedere thats made for this very purpose

https://lifehacker.com/341950/belvedere-automates-your-self-cleaning-pc

they list it as unsupported on alternative.to even though its OSS, but ive not had problems with it. but they list others there

https://alternativeto.net/software/belvedere/

nogojoe:
Hi. Just came across this program. It may help you

http://www.softpedia.com/get/System/Boot-Manager-Disk/MoveOnBoot.shtml

dcwul62:
Thank you all!
As for DropIt I tried following, without success.

-

-

Mouser: I checked his site, likely I am overlooking it, but eh .. which AHK ?
wraith808: I came accross Belvedere, but one way or the other I could not download it and I assumed, considering the age of the program that it wasn't supported anymore, i.e. I went on.
There are many, many tools around,
see http://www.softpedia.com/downloadTag/Monitor%20Folder

After spending quite some time on checking them out, I also find a relatively simple solution with Powershell.

Seems to work fine.

created a powerscript file (.ps1)

e.g. MoveImages.ps1


--- ---for (;;) {
    start-sleep -s 10
    move-item C:\Users\Username\Documents\*.png N:\JPG\Catalog
    move-item C:\Users\Username\Documents\*.jpg N:\JPG\Catalog
}

then run with powershell.

It may not be as fancy as some tools around, but effective just for this task.

I have NO knowledge of Powershell and scripting, I picked this up from Stackoverflow.
Add the .ps1 file to Windows startmenu, right-click "Run with Powershell", or better
associate .ps1 with Powershell.exe (often ps1 is associated with Notepad)

-



Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version