Move all files within subfolders to parent folder
up vote
0
down vote
favorite
Firstly, I'm aware there are tons of similar questions, and I know because I must have tried adapting at least 5 of them, but I'm still here asking because my crappy grasp of CMD (which I actually thought I was getting good at up until this point) is frustrating me with generic, unhelpful errors, and I can't understand what part of the syntax is wrong. This is likely due to the fact that other questions deal with the folder/filename structures of their respective OPs, and when I try to adapt the code to my own folder/file structure it refuses to work. Therefore, I'm here asking for a CMD for
loop solution that'll actually work for my own file and folder structure.
I have a parent folder which contains many other folders, in which there are files:
Parent Folder
Subfolder
File1
File2
Subfolder
File1
File2
Subfolder
File1
File2
...and so on.
I'm wanting to use a CMD for
loop in combination with the move
command to extract all the files in the subfolders to the parent folder, leaving each subfolder empty.
When giving the CMD for
loop please break down what each part of the command is doing, as this'll help make sure I understand the code and hopefully minimise the trouble I have getting it to work for myself.
windows-7 windows command-line windows-explorer cmd.exe
add a comment |
up vote
0
down vote
favorite
Firstly, I'm aware there are tons of similar questions, and I know because I must have tried adapting at least 5 of them, but I'm still here asking because my crappy grasp of CMD (which I actually thought I was getting good at up until this point) is frustrating me with generic, unhelpful errors, and I can't understand what part of the syntax is wrong. This is likely due to the fact that other questions deal with the folder/filename structures of their respective OPs, and when I try to adapt the code to my own folder/file structure it refuses to work. Therefore, I'm here asking for a CMD for
loop solution that'll actually work for my own file and folder structure.
I have a parent folder which contains many other folders, in which there are files:
Parent Folder
Subfolder
File1
File2
Subfolder
File1
File2
Subfolder
File1
File2
...and so on.
I'm wanting to use a CMD for
loop in combination with the move
command to extract all the files in the subfolders to the parent folder, leaving each subfolder empty.
When giving the CMD for
loop please break down what each part of the command is doing, as this'll help make sure I understand the code and hopefully minimise the trouble I have getting it to work for myself.
windows-7 windows command-line windows-explorer cmd.exe
what if you diddir /s/b >a.a
to get a list of all files, one per line. Then youmove
at the beginning of each line, andc:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it
– barlop
Nov 17 '16 at 2:12
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Firstly, I'm aware there are tons of similar questions, and I know because I must have tried adapting at least 5 of them, but I'm still here asking because my crappy grasp of CMD (which I actually thought I was getting good at up until this point) is frustrating me with generic, unhelpful errors, and I can't understand what part of the syntax is wrong. This is likely due to the fact that other questions deal with the folder/filename structures of their respective OPs, and when I try to adapt the code to my own folder/file structure it refuses to work. Therefore, I'm here asking for a CMD for
loop solution that'll actually work for my own file and folder structure.
I have a parent folder which contains many other folders, in which there are files:
Parent Folder
Subfolder
File1
File2
Subfolder
File1
File2
Subfolder
File1
File2
...and so on.
I'm wanting to use a CMD for
loop in combination with the move
command to extract all the files in the subfolders to the parent folder, leaving each subfolder empty.
When giving the CMD for
loop please break down what each part of the command is doing, as this'll help make sure I understand the code and hopefully minimise the trouble I have getting it to work for myself.
windows-7 windows command-line windows-explorer cmd.exe
Firstly, I'm aware there are tons of similar questions, and I know because I must have tried adapting at least 5 of them, but I'm still here asking because my crappy grasp of CMD (which I actually thought I was getting good at up until this point) is frustrating me with generic, unhelpful errors, and I can't understand what part of the syntax is wrong. This is likely due to the fact that other questions deal with the folder/filename structures of their respective OPs, and when I try to adapt the code to my own folder/file structure it refuses to work. Therefore, I'm here asking for a CMD for
loop solution that'll actually work for my own file and folder structure.
I have a parent folder which contains many other folders, in which there are files:
Parent Folder
Subfolder
File1
File2
Subfolder
File1
File2
Subfolder
File1
File2
...and so on.
I'm wanting to use a CMD for
loop in combination with the move
command to extract all the files in the subfolders to the parent folder, leaving each subfolder empty.
When giving the CMD for
loop please break down what each part of the command is doing, as this'll help make sure I understand the code and hopefully minimise the trouble I have getting it to work for myself.
windows-7 windows command-line windows-explorer cmd.exe
windows-7 windows command-line windows-explorer cmd.exe
asked Nov 17 '16 at 2:04
Hashim
2,83962852
2,83962852
what if you diddir /s/b >a.a
to get a list of all files, one per line. Then youmove
at the beginning of each line, andc:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it
– barlop
Nov 17 '16 at 2:12
add a comment |
what if you diddir /s/b >a.a
to get a list of all files, one per line. Then youmove
at the beginning of each line, andc:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it
– barlop
Nov 17 '16 at 2:12
what if you did
dir /s/b >a.a
to get a list of all files, one per line. Then you move
at the beginning of each line, and c:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it– barlop
Nov 17 '16 at 2:12
what if you did
dir /s/b >a.a
to get a list of all files, one per line. Then you move
at the beginning of each line, and c:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it– barlop
Nov 17 '16 at 2:12
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Okay, I finally figured it out by adapting code from yet another question. Thanks to @AFH for clarifying the parts I was unsure about in the comments to this answer, and for his general help with it - it's much appreciated.
To Extract All Files from Subfolders to their Parent Folder
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER"
Remember to replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
To Extract All Files from Subfolders and Delete Empty Subfolders
It's unlikely you'll need to keep the empty subfolders left over after extracting the files from them - I certainly didn't - so the below command automates the deletion of them, too.
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER" && cd "PARENTFOLDER" && for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Once again, replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
By this point, however, it's no longer a one-liner, and starts to get a bit convoluted when pasted into the command line, so it's easier to just put the whole thing in a batch file. Using variables for the path to the parent folder allows you to replace just the one instance of PARENTFOLDER
at the beginning of the file, and it's also the safer option, preventing against any accidental deletion of empty folders that you might want to keep.
The Batch File
Paste into a text file, replace PARENTFOLDER
with the path to the folder you want it to work with, and save it with the .bat
extension. Run in any directory.
@ECHO OFF
SETLOCAL
SET parent="PARENTFOLDER"
CD /d %parent%
FOR /r %parent% %%d IN (*.*) DO MOVE "%%d" %parent%
FOR /f "delims=" %%d IN ('DIR /a:d /s /b ^| SORT /r') DO RD "%%d"
ECHO Done. Press any key to terminate script.
PAUSE >NUL
1
Thefor
command syntax is not rational, but the first%d
definesd
as the loop variable, and the second%d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational:for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after thedo
, where%d
may expand to file names with embedded blanks. There is nothing special aboutd
: any single letter could be used, butd
is logical for directories (orf
for files). Even more irrationally,%%d
must be used in a batch (.cmd
or.bat
) file.
– AFH
Nov 17 '16 at 2:58
1
Without testing, I think you want a nestedfor
, along the lines offor /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.
– AFH
Nov 18 '16 at 0:58
1
IfPARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put anecho
between the firstdo
and the secondfor
, to check exactly what nestedfor
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.
– AFH
Nov 20 '16 at 0:12
1
If you don't quotePARENTFOLDER
and it's something likename with spaces
, the firstfor
will evaluate asfor /d %d in (name with spaces*) do ...
, sod
will become successivelyname
,with
, then any files matching the maskspaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with thecd
command, which takes the rest of the line as a single parameter, including any spaces (thoughTab
expansion inserts quotes);md
andrd
can act on multiple directories, so need quotes if the names have spaces.
– AFH
Nov 20 '16 at 3:08
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
|
show 6 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Okay, I finally figured it out by adapting code from yet another question. Thanks to @AFH for clarifying the parts I was unsure about in the comments to this answer, and for his general help with it - it's much appreciated.
To Extract All Files from Subfolders to their Parent Folder
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER"
Remember to replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
To Extract All Files from Subfolders and Delete Empty Subfolders
It's unlikely you'll need to keep the empty subfolders left over after extracting the files from them - I certainly didn't - so the below command automates the deletion of them, too.
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER" && cd "PARENTFOLDER" && for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Once again, replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
By this point, however, it's no longer a one-liner, and starts to get a bit convoluted when pasted into the command line, so it's easier to just put the whole thing in a batch file. Using variables for the path to the parent folder allows you to replace just the one instance of PARENTFOLDER
at the beginning of the file, and it's also the safer option, preventing against any accidental deletion of empty folders that you might want to keep.
The Batch File
Paste into a text file, replace PARENTFOLDER
with the path to the folder you want it to work with, and save it with the .bat
extension. Run in any directory.
@ECHO OFF
SETLOCAL
SET parent="PARENTFOLDER"
CD /d %parent%
FOR /r %parent% %%d IN (*.*) DO MOVE "%%d" %parent%
FOR /f "delims=" %%d IN ('DIR /a:d /s /b ^| SORT /r') DO RD "%%d"
ECHO Done. Press any key to terminate script.
PAUSE >NUL
1
Thefor
command syntax is not rational, but the first%d
definesd
as the loop variable, and the second%d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational:for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after thedo
, where%d
may expand to file names with embedded blanks. There is nothing special aboutd
: any single letter could be used, butd
is logical for directories (orf
for files). Even more irrationally,%%d
must be used in a batch (.cmd
or.bat
) file.
– AFH
Nov 17 '16 at 2:58
1
Without testing, I think you want a nestedfor
, along the lines offor /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.
– AFH
Nov 18 '16 at 0:58
1
IfPARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put anecho
between the firstdo
and the secondfor
, to check exactly what nestedfor
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.
– AFH
Nov 20 '16 at 0:12
1
If you don't quotePARENTFOLDER
and it's something likename with spaces
, the firstfor
will evaluate asfor /d %d in (name with spaces*) do ...
, sod
will become successivelyname
,with
, then any files matching the maskspaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with thecd
command, which takes the rest of the line as a single parameter, including any spaces (thoughTab
expansion inserts quotes);md
andrd
can act on multiple directories, so need quotes if the names have spaces.
– AFH
Nov 20 '16 at 3:08
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
|
show 6 more comments
up vote
2
down vote
accepted
Okay, I finally figured it out by adapting code from yet another question. Thanks to @AFH for clarifying the parts I was unsure about in the comments to this answer, and for his general help with it - it's much appreciated.
To Extract All Files from Subfolders to their Parent Folder
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER"
Remember to replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
To Extract All Files from Subfolders and Delete Empty Subfolders
It's unlikely you'll need to keep the empty subfolders left over after extracting the files from them - I certainly didn't - so the below command automates the deletion of them, too.
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER" && cd "PARENTFOLDER" && for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Once again, replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
By this point, however, it's no longer a one-liner, and starts to get a bit convoluted when pasted into the command line, so it's easier to just put the whole thing in a batch file. Using variables for the path to the parent folder allows you to replace just the one instance of PARENTFOLDER
at the beginning of the file, and it's also the safer option, preventing against any accidental deletion of empty folders that you might want to keep.
The Batch File
Paste into a text file, replace PARENTFOLDER
with the path to the folder you want it to work with, and save it with the .bat
extension. Run in any directory.
@ECHO OFF
SETLOCAL
SET parent="PARENTFOLDER"
CD /d %parent%
FOR /r %parent% %%d IN (*.*) DO MOVE "%%d" %parent%
FOR /f "delims=" %%d IN ('DIR /a:d /s /b ^| SORT /r') DO RD "%%d"
ECHO Done. Press any key to terminate script.
PAUSE >NUL
1
Thefor
command syntax is not rational, but the first%d
definesd
as the loop variable, and the second%d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational:for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after thedo
, where%d
may expand to file names with embedded blanks. There is nothing special aboutd
: any single letter could be used, butd
is logical for directories (orf
for files). Even more irrationally,%%d
must be used in a batch (.cmd
or.bat
) file.
– AFH
Nov 17 '16 at 2:58
1
Without testing, I think you want a nestedfor
, along the lines offor /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.
– AFH
Nov 18 '16 at 0:58
1
IfPARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put anecho
between the firstdo
and the secondfor
, to check exactly what nestedfor
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.
– AFH
Nov 20 '16 at 0:12
1
If you don't quotePARENTFOLDER
and it's something likename with spaces
, the firstfor
will evaluate asfor /d %d in (name with spaces*) do ...
, sod
will become successivelyname
,with
, then any files matching the maskspaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with thecd
command, which takes the rest of the line as a single parameter, including any spaces (thoughTab
expansion inserts quotes);md
andrd
can act on multiple directories, so need quotes if the names have spaces.
– AFH
Nov 20 '16 at 3:08
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
|
show 6 more comments
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Okay, I finally figured it out by adapting code from yet another question. Thanks to @AFH for clarifying the parts I was unsure about in the comments to this answer, and for his general help with it - it's much appreciated.
To Extract All Files from Subfolders to their Parent Folder
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER"
Remember to replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
To Extract All Files from Subfolders and Delete Empty Subfolders
It's unlikely you'll need to keep the empty subfolders left over after extracting the files from them - I certainly didn't - so the below command automates the deletion of them, too.
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER" && cd "PARENTFOLDER" && for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Once again, replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
By this point, however, it's no longer a one-liner, and starts to get a bit convoluted when pasted into the command line, so it's easier to just put the whole thing in a batch file. Using variables for the path to the parent folder allows you to replace just the one instance of PARENTFOLDER
at the beginning of the file, and it's also the safer option, preventing against any accidental deletion of empty folders that you might want to keep.
The Batch File
Paste into a text file, replace PARENTFOLDER
with the path to the folder you want it to work with, and save it with the .bat
extension. Run in any directory.
@ECHO OFF
SETLOCAL
SET parent="PARENTFOLDER"
CD /d %parent%
FOR /r %parent% %%d IN (*.*) DO MOVE "%%d" %parent%
FOR /f "delims=" %%d IN ('DIR /a:d /s /b ^| SORT /r') DO RD "%%d"
ECHO Done. Press any key to terminate script.
PAUSE >NUL
Okay, I finally figured it out by adapting code from yet another question. Thanks to @AFH for clarifying the parts I was unsure about in the comments to this answer, and for his general help with it - it's much appreciated.
To Extract All Files from Subfolders to their Parent Folder
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER"
Remember to replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
To Extract All Files from Subfolders and Delete Empty Subfolders
It's unlikely you'll need to keep the empty subfolders left over after extracting the files from them - I certainly didn't - so the below command automates the deletion of them, too.
for /r "PARENTFOLDER" %d in (*.*) do move "%d" "PARENTFOLDER" && cd "PARENTFOLDER" && for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Once again, replace all instances of PARENTFOLDER
with the path to the folder that you want to extract the files to.
By this point, however, it's no longer a one-liner, and starts to get a bit convoluted when pasted into the command line, so it's easier to just put the whole thing in a batch file. Using variables for the path to the parent folder allows you to replace just the one instance of PARENTFOLDER
at the beginning of the file, and it's also the safer option, preventing against any accidental deletion of empty folders that you might want to keep.
The Batch File
Paste into a text file, replace PARENTFOLDER
with the path to the folder you want it to work with, and save it with the .bat
extension. Run in any directory.
@ECHO OFF
SETLOCAL
SET parent="PARENTFOLDER"
CD /d %parent%
FOR /r %parent% %%d IN (*.*) DO MOVE "%%d" %parent%
FOR /f "delims=" %%d IN ('DIR /a:d /s /b ^| SORT /r') DO RD "%%d"
ECHO Done. Press any key to terminate script.
PAUSE >NUL
edited Jan 4 '17 at 23:50
answered Nov 17 '16 at 2:16
Hashim
2,83962852
2,83962852
1
Thefor
command syntax is not rational, but the first%d
definesd
as the loop variable, and the second%d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational:for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after thedo
, where%d
may expand to file names with embedded blanks. There is nothing special aboutd
: any single letter could be used, butd
is logical for directories (orf
for files). Even more irrationally,%%d
must be used in a batch (.cmd
or.bat
) file.
– AFH
Nov 17 '16 at 2:58
1
Without testing, I think you want a nestedfor
, along the lines offor /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.
– AFH
Nov 18 '16 at 0:58
1
IfPARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put anecho
between the firstdo
and the secondfor
, to check exactly what nestedfor
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.
– AFH
Nov 20 '16 at 0:12
1
If you don't quotePARENTFOLDER
and it's something likename with spaces
, the firstfor
will evaluate asfor /d %d in (name with spaces*) do ...
, sod
will become successivelyname
,with
, then any files matching the maskspaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with thecd
command, which takes the rest of the line as a single parameter, including any spaces (thoughTab
expansion inserts quotes);md
andrd
can act on multiple directories, so need quotes if the names have spaces.
– AFH
Nov 20 '16 at 3:08
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
|
show 6 more comments
1
Thefor
command syntax is not rational, but the first%d
definesd
as the loop variable, and the second%d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational:for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after thedo
, where%d
may expand to file names with embedded blanks. There is nothing special aboutd
: any single letter could be used, butd
is logical for directories (orf
for files). Even more irrationally,%%d
must be used in a batch (.cmd
or.bat
) file.
– AFH
Nov 17 '16 at 2:58
1
Without testing, I think you want a nestedfor
, along the lines offor /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.
– AFH
Nov 18 '16 at 0:58
1
IfPARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put anecho
between the firstdo
and the secondfor
, to check exactly what nestedfor
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.
– AFH
Nov 20 '16 at 0:12
1
If you don't quotePARENTFOLDER
and it's something likename with spaces
, the firstfor
will evaluate asfor /d %d in (name with spaces*) do ...
, sod
will become successivelyname
,with
, then any files matching the maskspaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with thecd
command, which takes the rest of the line as a single parameter, including any spaces (thoughTab
expansion inserts quotes);md
andrd
can act on multiple directories, so need quotes if the names have spaces.
– AFH
Nov 20 '16 at 3:08
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
1
1
The
for
command syntax is not rational, but the first %d
defines d
as the loop variable, and the second %d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational: for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after the do
, where %d
may expand to file names with embedded blanks. There is nothing special about d
: any single letter could be used, but d
is logical for directories (or f
for files). Even more irrationally, %%d
must be used in a batch (.cmd
or .bat
) file.– AFH
Nov 17 '16 at 2:58
The
for
command syntax is not rational, but the first %d
defines d
as the loop variable, and the second %d
is what the loop variable expands to on each pass of the loop (Unix syntax is more rational: for ... d in ... do ...
). The first instance is not expanded, so it does not need quoting, unlike after the do
, where %d
may expand to file names with embedded blanks. There is nothing special about d
: any single letter could be used, but d
is logical for directories (or f
for files). Even more irrationally, %%d
must be used in a batch (.cmd
or .bat
) file.– AFH
Nov 17 '16 at 2:58
1
1
Without testing, I think you want a nested
for
, along the lines of for /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.– AFH
Nov 18 '16 at 0:58
Without testing, I think you want a nested
for
, along the lines of for /d %d in (PARENTFOLDER*) do for /r "%d" %f in (*.*) do move "%f" TARGETLOCATION
. If you include the extra requirements into your question, I'll submit an answer, for the benefit of others.– AFH
Nov 18 '16 at 0:58
1
1
If
PARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put an echo
between the first do
and the second for
, to check exactly what nested for
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.– AFH
Nov 20 '16 at 0:12
If
PARENTFOLDER
contains blanks, it will need to be quoted. I suggest you put an echo
between the first do
and the second for
, to check exactly what nested for
command would be executed. Your conditions have so many possible variants that I can't set up a representative test here.– AFH
Nov 20 '16 at 0:12
1
1
If you don't quote
PARENTFOLDER
and it's something like name with spaces
, the first for
will evaluate as for /d %d in (name with spaces*) do ...
, so d
will become successively name
, with
, then any files matching the mask spaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with the cd
command, which takes the rest of the line as a single parameter, including any spaces (though Tab
expansion inserts quotes); md
and rd
can act on multiple directories, so need quotes if the names have spaces.– AFH
Nov 20 '16 at 3:08
If you don't quote
PARENTFOLDER
and it's something like name with spaces
, the first for
will evaluate as for /d %d in (name with spaces*) do ...
, so d
will become successively name
, with
, then any files matching the mask spaces*
. Parentheses do not stop the requirement to quote. The only time you needn't quote is with the cd
command, which takes the rest of the line as a single parameter, including any spaces (though Tab
expansion inserts quotes); md
and rd
can act on multiple directories, so need quotes if the names have spaces.– AFH
Nov 20 '16 at 3:08
1
1
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
I'm glad you have solved it.
– AFH
Jan 4 '17 at 23:44
|
show 6 more comments
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1146686%2fmove-all-files-within-subfolders-to-parent-folder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what if you did
dir /s/b >a.a
to get a list of all files, one per line. Then youmove
at the beginning of each line, andc:blahmyparentfolder
at the end of each line then you have a list of command and can name the file blah.bat and run it– barlop
Nov 17 '16 at 2:12