Move files, check for duplicates and rename incrementally if presentGet-ChildItem to Move-Item - path not foundhow to use cd command in powershellScript help rename - copy - moveUsing Move-Item -Destination to move files to a new shareMove “n” files in Seperate Folder with PowerShellhow to move bulk move files and then rename them in sequential order?Check if file exists and move duplicatesMove and rename from CSV - substring and joinMove files of certain type from one folder to another
What is the highest level of accuracy in motion control a Victorian society could achieve?
Is there a minimum amount of electricity that can be fed back into the grid?
Shipped package arrived - didn't order, possible scam?
What's the big deal about the Nazgûl losing their horses?
How to factor a fourth degree polynomial
Why do Martians have to wear space helmets?
Can I Ready an attack action to trigger when the target Blinks back to the Material plane?
Passwordless authentication - how invalidate login code
Is conquering your neighbors to fight a greater enemy a valid strategy?
Array or vector? Two dimensional array or matrix?
Why does this function pointer assignment work when assigned directly but not with the conditional operator?
Was the 45.9°C temperature in France in June 2019 the highest ever recorded in France?
Is this car delivery via Ebay Motors on Craigslist a scam?
Wouldn't putting an electronic key inside a small Faraday cage render it completely useless?
When moving a unique_ptr into a lambda, why is it not possible to call reset?
What is the fundamental difference between catching whales and hunting other animals?
I'm feeling like my character doesn't fit the campaign
My professor has told me he will be the corresponding author. Will it hurt my future career?
What are some bad ways to subvert tropes?
How would a sea turtle end up on its back?
Why do Klingons use cloaking devices?
Minor differences between two recorded guitars
Can a USB hub be used to access a drive from two devices?
Are host configurations in the SSH config merged?
Move files, check for duplicates and rename incrementally if present
Get-ChildItem to Move-Item - path not foundhow to use cd command in powershellScript help rename - copy - moveUsing Move-Item -Destination to move files to a new shareMove “n” files in Seperate Folder with PowerShellhow to move bulk move files and then rename them in sequential order?Check if file exists and move duplicatesMove and rename from CSV - substring and joinMove files of certain type from one folder to another
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a script that looks at the source folder and then the destination folder and decides if the sub-folders are present. If not, it creates the corresponding folder. Once that is done, it moves all of the files in the sub folders to the destination. Problem - There are duplicate files that need can't be overwritten. I need a way to check for duplicates and if found, increment the source file name by -1. There may be incremented files already.
My current script works flawlessly to create needed sub-folders and move files but I loose any previous files.
$SFolder = "C:TempTestSource"
$DFolder = "C:TempTestDestination"
$folders = Get-ChildItem -Path $SFolder -Directory
foreach ($folder in $folders)
Where-Object -FilterScript $_.LastWriteTime -lt [datetime]::Now.AddMinutes(-5)
The script as written works great. Here is what I need. I start with the following:
Source test15013018-22503-652469-1 (no file extension)
test15013018-22503-652469-2
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
I want the following result after running the script:
Source test1
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
test25013018-22503-652469-1-3
test15013018-22503-652469-2
powershell
add a comment |
I have a script that looks at the source folder and then the destination folder and decides if the sub-folders are present. If not, it creates the corresponding folder. Once that is done, it moves all of the files in the sub folders to the destination. Problem - There are duplicate files that need can't be overwritten. I need a way to check for duplicates and if found, increment the source file name by -1. There may be incremented files already.
My current script works flawlessly to create needed sub-folders and move files but I loose any previous files.
$SFolder = "C:TempTestSource"
$DFolder = "C:TempTestDestination"
$folders = Get-ChildItem -Path $SFolder -Directory
foreach ($folder in $folders)
Where-Object -FilterScript $_.LastWriteTime -lt [datetime]::Now.AddMinutes(-5)
The script as written works great. Here is what I need. I start with the following:
Source test15013018-22503-652469-1 (no file extension)
test15013018-22503-652469-2
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
I want the following result after running the script:
Source test1
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
test25013018-22503-652469-1-3
test15013018-22503-652469-2
powershell
1
Your source already has a trailing-1
How to determine if this should be incremented or another-1
appended?
– LotPings
Mar 25 at 21:37
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52
add a comment |
I have a script that looks at the source folder and then the destination folder and decides if the sub-folders are present. If not, it creates the corresponding folder. Once that is done, it moves all of the files in the sub folders to the destination. Problem - There are duplicate files that need can't be overwritten. I need a way to check for duplicates and if found, increment the source file name by -1. There may be incremented files already.
My current script works flawlessly to create needed sub-folders and move files but I loose any previous files.
$SFolder = "C:TempTestSource"
$DFolder = "C:TempTestDestination"
$folders = Get-ChildItem -Path $SFolder -Directory
foreach ($folder in $folders)
Where-Object -FilterScript $_.LastWriteTime -lt [datetime]::Now.AddMinutes(-5)
The script as written works great. Here is what I need. I start with the following:
Source test15013018-22503-652469-1 (no file extension)
test15013018-22503-652469-2
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
I want the following result after running the script:
Source test1
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
test25013018-22503-652469-1-3
test15013018-22503-652469-2
powershell
I have a script that looks at the source folder and then the destination folder and decides if the sub-folders are present. If not, it creates the corresponding folder. Once that is done, it moves all of the files in the sub folders to the destination. Problem - There are duplicate files that need can't be overwritten. I need a way to check for duplicates and if found, increment the source file name by -1. There may be incremented files already.
My current script works flawlessly to create needed sub-folders and move files but I loose any previous files.
$SFolder = "C:TempTestSource"
$DFolder = "C:TempTestDestination"
$folders = Get-ChildItem -Path $SFolder -Directory
foreach ($folder in $folders)
Where-Object -FilterScript $_.LastWriteTime -lt [datetime]::Now.AddMinutes(-5)
The script as written works great. Here is what I need. I start with the following:
Source test15013018-22503-652469-1 (no file extension)
test15013018-22503-652469-2
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
I want the following result after running the script:
Source test1
Destination test25013018-22503-652469-1
test25013018-22503-652469-1-1
test25013018-22503-652469-1-2
test25013018-22503-652469-1-3
test15013018-22503-652469-2
powershell
powershell
edited Mar 26 at 12:24
Lundy
asked Mar 25 at 20:41
LundyLundy
11 bronze badge
11 bronze badge
1
Your source already has a trailing-1
How to determine if this should be incremented or another-1
appended?
– LotPings
Mar 25 at 21:37
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52
add a comment |
1
Your source already has a trailing-1
How to determine if this should be incremented or another-1
appended?
– LotPings
Mar 25 at 21:37
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52
1
1
Your source already has a trailing
-1
How to determine if this should be incremented or another -1
appended?– LotPings
Mar 25 at 21:37
Your source already has a trailing
-1
How to determine if this should be incremented or another -1
appended?– LotPings
Mar 25 at 21:37
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52
add a comment |
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
);
);
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%2fstackoverflow.com%2fquestions%2f55346095%2fmove-files-check-for-duplicates-and-rename-incrementally-if-present%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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.
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%2fstackoverflow.com%2fquestions%2f55346095%2fmove-files-check-for-duplicates-and-rename-incrementally-if-present%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
1
Your source already has a trailing
-1
How to determine if this should be incremented or another-1
appended?– LotPings
Mar 25 at 21:37
Each file could have -1 through -30 as each file corresponds to a specific board. If there already is a -1, then the file needs to be -1-1 or -18-1 or 27-1.
– Lundy
Mar 26 at 1:52