Batch Move Problem
Posted: 05 Feb 2021 10:16
I'm a newb when it comes to batch files so I apologize in advance...
I have over 800 folders which contain a number of files including a .txt file. I'm trying to move the .txt file from each of the folders into a single folder called "_Text Versions" (it already exists).
C:\
--->Users
------>David
--------->"Calibre Library"
------------>"Book Summaries"
--------------->(the folder name which is book title)
------------------>*.txt
But when I run my batch file I get no results ;-(
(Here's the .bat file contents)
@echo off
move C:\Users\David\"Calibre Library"\"Book Summaries"\*\*.txt C:\Users\David\"Calibre Library"\"Book Summaries"\"_Text Versions"
Thx in advance,
D
I have over 800 folders which contain a number of files including a .txt file. I'm trying to move the .txt file from each of the folders into a single folder called "_Text Versions" (it already exists).
C:\
--->Users
------>David
--------->"Calibre Library"
------------>"Book Summaries"
--------------->(the folder name which is book title)
------------------>*.txt
But when I run my batch file I get no results ;-(
(Here's the .bat file contents)
@echo off
move C:\Users\David\"Calibre Library"\"Book Summaries"\*\*.txt C:\Users\David\"Calibre Library"\"Book Summaries"\"_Text Versions"
Thx in advance,
D