General batch to move files between sub directories based on name not workingWhat is the current directory in a batch file?Batch file to recursively move a single subdirectory from multiple parent directories TO another single, defined directoryBatch File To Get It's Own Directory Or The Directory Defined In The “Start In” Property Of A ShortcutBatch file or script to move files up X levelsbatch script moving multiple file extensions to sub folder passing parameters to a single subroutineNeed batch program that moves files without copying then deleting themHow to run a batch on another server to copy a file to not shared directoryMoving files from one dynamic directory to another using batch scriptCreate new subfolder with same name and move files to the new folderWriting a batch file to move cluttered files into respective folders

Is there any effect in D&D 5e that cannot be undone?

Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?

Have Steve Rogers (Captain America) and a young Erik Lehnsherr (Magneto) interacted during WWII?

Time at 1G acceleration to travel 100000 light years

How can this shape perfectly cover a cube?

The instant an accelerating object has zero speed, is it speeding up, slowing down, or neither?

TiKZ won't graph 1/sqrt(x)

Why does my system use more RAM after an hour of usage?

Explicit direct #include vs. Non-contractual transitive #include

Does anyone recognize these rockets, and their location?

Leaving job close to major deadlines

At what temperature should the earth be cooked to prevent human infection?

How to search for Android apps without ads?

100-doors puzzle

Print the phrase "And she said, 'But that's his.'" using only the alphabet

How to ask if I can mow my neighbor's lawn

How do I gain the trust of other PCs?

Background for black and white chart

Catching a robber on one line

How do I run a script as sudo at boot time on Ubuntu 18.04 Server?

What is the precise meaning of "подсел на мак"?

Fill the maze with a wall-following Snake until it gets stuck

How do I become a better writer when I hate reading?

What is this plant I saw for sale at a Romanian farmer's market?



General batch to move files between sub directories based on name not working


What is the current directory in a batch file?Batch file to recursively move a single subdirectory from multiple parent directories TO another single, defined directoryBatch File To Get It's Own Directory Or The Directory Defined In The “Start In” Property Of A ShortcutBatch file or script to move files up X levelsbatch script moving multiple file extensions to sub folder passing parameters to a single subroutineNeed batch program that moves files without copying then deleting themHow to run a batch on another server to copy a file to not shared directoryMoving files from one dynamic directory to another using batch scriptCreate new subfolder with same name and move files to the new folderWriting a batch file to move cluttered files into respective folders






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Creating a general batch that must run from the parent folder. It would serve to move...




  • PARENTphotosJan_2018.jpeg

  • PARENTphotosFeb_2018.jpeg

  • PARENTphotosMar_2018.jpeg

  • etc



into...




  • PARENTJan_2018_Backup

  • PARENTFeb_2018_Backup

  • PARENTMar_2018_Backup

  • etc



respectively



The final destination folder will always end with _Backup



This is what I have attempted and hit a dead end with:



for "%~dp0photos" %%A in (*.jpeg) do move "%%A" "%~dp0%%~nA_Backup"


However I keep getting the error:




PARENT/photos was unexpected at this time




PS: "PARENT" is not the actual folder name, but a placeholder for any directory that may be the parent folder to run the batch in.










share|improve this question

















  • 2





    You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

    – Squashman
    Mar 25 at 4:23












  • @Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

    – PunyTed
    Mar 25 at 4:29












  • Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

    – aschipfl
    Mar 25 at 9:34

















1















Creating a general batch that must run from the parent folder. It would serve to move...




  • PARENTphotosJan_2018.jpeg

  • PARENTphotosFeb_2018.jpeg

  • PARENTphotosMar_2018.jpeg

  • etc



into...




  • PARENTJan_2018_Backup

  • PARENTFeb_2018_Backup

  • PARENTMar_2018_Backup

  • etc



respectively



The final destination folder will always end with _Backup



This is what I have attempted and hit a dead end with:



for "%~dp0photos" %%A in (*.jpeg) do move "%%A" "%~dp0%%~nA_Backup"


However I keep getting the error:




PARENT/photos was unexpected at this time




PS: "PARENT" is not the actual folder name, but a placeholder for any directory that may be the parent folder to run the batch in.










share|improve this question

















  • 2





    You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

    – Squashman
    Mar 25 at 4:23












  • @Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

    – PunyTed
    Mar 25 at 4:29












  • Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

    – aschipfl
    Mar 25 at 9:34













1












1








1








Creating a general batch that must run from the parent folder. It would serve to move...




  • PARENTphotosJan_2018.jpeg

  • PARENTphotosFeb_2018.jpeg

  • PARENTphotosMar_2018.jpeg

  • etc



into...




  • PARENTJan_2018_Backup

  • PARENTFeb_2018_Backup

  • PARENTMar_2018_Backup

  • etc



respectively



The final destination folder will always end with _Backup



This is what I have attempted and hit a dead end with:



for "%~dp0photos" %%A in (*.jpeg) do move "%%A" "%~dp0%%~nA_Backup"


However I keep getting the error:




PARENT/photos was unexpected at this time




PS: "PARENT" is not the actual folder name, but a placeholder for any directory that may be the parent folder to run the batch in.










share|improve this question














Creating a general batch that must run from the parent folder. It would serve to move...




  • PARENTphotosJan_2018.jpeg

  • PARENTphotosFeb_2018.jpeg

  • PARENTphotosMar_2018.jpeg

  • etc



into...




  • PARENTJan_2018_Backup

  • PARENTFeb_2018_Backup

  • PARENTMar_2018_Backup

  • etc



respectively



The final destination folder will always end with _Backup



This is what I have attempted and hit a dead end with:



for "%~dp0photos" %%A in (*.jpeg) do move "%%A" "%~dp0%%~nA_Backup"


However I keep getting the error:




PARENT/photos was unexpected at this time




PS: "PARENT" is not the actual folder name, but a placeholder for any directory that may be the parent folder to run the batch in.







batch-file move organization






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 3:53









PunyTedPunyTed

345




345







  • 2





    You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

    – Squashman
    Mar 25 at 4:23












  • @Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

    – PunyTed
    Mar 25 at 4:29












  • Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

    – aschipfl
    Mar 25 at 9:34












  • 2





    You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

    – Squashman
    Mar 25 at 4:23












  • @Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

    – PunyTed
    Mar 25 at 4:29












  • Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

    – aschipfl
    Mar 25 at 9:34







2




2





You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

– Squashman
Mar 25 at 4:23






You cannot specify a path after the FOR command. That can only be used with the FOR /R command.

– Squashman
Mar 25 at 4:23














@Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

– PunyTed
Mar 25 at 4:29






@Squashman Thank you very much. That clarifies a lot. I think I can make it work now.

– PunyTed
Mar 25 at 4:29














Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

– aschipfl
Mar 25 at 9:34





Reading the help of a command helps a lot: type for /? into a command prompt window and learn how to use it...

– aschipfl
Mar 25 at 9:34












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331053%2fgeneral-batch-to-move-files-between-sub-directories-based-on-name-not-working%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331053%2fgeneral-batch-to-move-files-between-sub-directories-based-on-name-not-working%23new-answer', 'question_page');

);

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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현