When I right-click on a file, then select Send To | Documents, the file is copied into my Documents folder, not moved. Is there any way to change this behavior in Windows 7.

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

Post at howtogeek offering a "Move to" and a "Copy to" option in the context menu.

alt text

link|improve this answer
feedback

Good question. I think by default it copies the file. One way that I over come wanting to "move" rather than "copy" files is to use the cut option or a program such as Total Commander. You can actually "move" files very easily. I just keep it open all the time so it's ready when I need it.

link|improve this answer
feedback

You can create a bat file with this:

Set MoveTo="C:\"

for %%f in (%*) do @move %%f %MoveTo%

Put a shortcut of this bat file in your send to directory and now you can right click a file and choose send to --> "your shortcut". The file will be moved to the MoveTo location.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.