Moving files from one partition to another
Moving files from one partition to another
How do you move files from C:\ to E:\ partition?
When I drag and drop files from C:\ to E:\ partition of my hard drive, it just *copies* the file but don't delete the file from the original source partition.
I just want to drag and drop to move the file; not to copy it.
This problem never happened before when I had just one C:\ partition on my HDD...
Would appreciate everyone's help!
Background Info: After reading about claiming back the 5 GB of hard drive space used up by the pre-desktop partition (for product recovery purposes)...
I've partitioned it into C:\ and E:\ drives (the D:\ drive name was claimed by the CD-ROM...)
When I drag and drop files from C:\ to E:\ partition of my hard drive, it just *copies* the file but don't delete the file from the original source partition.
I just want to drag and drop to move the file; not to copy it.
This problem never happened before when I had just one C:\ partition on my HDD...
Would appreciate everyone's help!
Background Info: After reading about claiming back the 5 GB of hard drive space used up by the pre-desktop partition (for product recovery purposes)...
I've partitioned it into C:\ and E:\ drives (the D:\ drive name was claimed by the CD-ROM...)
-
tfflivemb2
- Moderator1

- Posts: 5532
- Joined: Thu Sep 01, 2005 1:17 pm
- Location: Wisconsin
- Contact:
-
a31pguy
- Moderator1

- Posts: 605
- Joined: Wed Mar 16, 2005 12:14 pm
- Location: San Francisco Bay Area
- Contact:
but being a UNIX guy - I like to know my files go where I want them too. So I say use the command shell. It won't tie up you windows shell waiting for a move to finish - this will run in background and you can continue to work.
The first way is to use a shell (start -> run -> cmd)
then use the move command.
move c:\some_directory e:\some_directory
or the better way to move files is to use the xcopy command.
xcopy c:\some_directory e:\some_directory /s /e
which copies the entire directory tree.
then just do a rmdir c:\some_directory /q /s
which then deletes the directory and any files.
I just wrote a simple batch file. I call it moveit.cmd
start a cmd window (see above).
type in "cd c:\windows"
type in "copy con moveit.cmd"
paste the stuff below:
@echo off
echo Starting mass file move to %2
echo d | xcopy %1 %2 /s /e
echo Deleting old files from %1
rmdir %1 /q /s
echo Move Done!
pause
and then type control-z. should say 1 file written.
invoke it by (start -> run -> moveit c:\somedirectory e:\somedirectory)
it will ask you to hit a key once it's done to let you know it worked, then closes the window.
But if you want to move just a few files - then control-x and control-v are better for 1 file at a time.
The first way is to use a shell (start -> run -> cmd)
then use the move command.
move c:\some_directory e:\some_directory
or the better way to move files is to use the xcopy command.
xcopy c:\some_directory e:\some_directory /s /e
which copies the entire directory tree.
then just do a rmdir c:\some_directory /q /s
which then deletes the directory and any files.
I just wrote a simple batch file. I call it moveit.cmd
start a cmd window (see above).
type in "cd c:\windows"
type in "copy con moveit.cmd"
paste the stuff below:
@echo off
echo Starting mass file move to %2
echo d | xcopy %1 %2 /s /e
echo Deleting old files from %1
rmdir %1 /q /s
echo Move Done!
pause
and then type control-z. should say 1 file written.
invoke it by (start -> run -> moveit c:\somedirectory e:\somedirectory)
it will ask you to hit a key once it's done to let you know it worked, then closes the window.
But if you want to move just a few files - then control-x and control-v are better for 1 file at a time.
-
- Similar Topics
- Replies
- Views
- Last post
-
-
X230 Strong noise when moving Laptop not horizontal
by ReconquerMyPc » Thu Feb 16, 2017 5:40 pm » in ThinkPad X230 and later Series - 4 Replies
- 550 Views
-
Last post by ReconquerMyPc
Fri May 12, 2017 6:40 pm
-
-
-
Hitachi 7k100 IBM firmware files/instructions needed
by EloItsMee » Wed Apr 19, 2017 12:09 pm » in ThinkPad T4x Series - 6 Replies
- 886 Views
-
Last post by EloItsMee
Thu Apr 20, 2017 11:50 am
-
-
-
Another ballsup from Lenovo: the 40Y8725 Ultrabay SATA-adapter
by RealBlackStuff » Wed Jan 25, 2017 3:20 pm » in GENERAL ThinkPad News/Comments & Questions - 1 Replies
- 415 Views
-
Last post by Cigarguy
Wed Jan 25, 2017 10:16 pm
-
-
-
Another - very - little collection ! (Thumbnails inside)
by WarMachine » Thu Feb 16, 2017 2:22 pm » in Pictures of your ThinkPad & desk setup - 2 Replies
- 362 Views
-
Last post by WarMachine
Thu Feb 16, 2017 3:44 pm
-
Who is online
Users browsing this forum: No registered users and 1 guest





