Check if multiple directories exist in Powershell and then execute command The Next CEO of Stack OverflowWindows Explorer “Command Prompt Here”How to handle command-line arguments in PowerShellCopy-Item problem with destinationPowerShell says “execution of scripts is disabled on this system.”Powershell save directory path from ls search?Running a command on each directory in a list using PowerShellcheck if file in folder already exist based on conditional statmentCreating subfolders with PowerShell in multiple parent foldersPowerShell 5 Copy-Item not workingGenerate commands based on dynamic number of variables in powershell
How to make a variable always equal to the result of some calculations?
What is the difference between "behavior" and "behaviour"?
How do I solve this limit?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
Opposite of a diet
Does it take more energy to get to Venus or to Mars?
Whats the best way to handle refactoring a big file?
How do I go from 300 unfinished/half written blog posts, to published posts?
If the heap is initialized for security, then why is the stack uninitialized?
Visit to the USA with ESTA approved before trip to Iran
What's the point of interval inversion?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
How long to clear the 'suck zone' of a turbofan after start is initiated?
How easy is it to start Magic from scratch?
How should I support this large drywall patch?
Return the Closest Prime Number
Implement the Thanos sorting algorithm
How do I construct this japanese bowl?
How do we know the LHC results are robust?
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Should I tutor a student who I know has cheated on their homework?
Need some help with wall behind rangetop
Why didn't Khan get resurrected in the Genesis Explosion?
Describing a person. What needs to be mentioned?
Check if multiple directories exist in Powershell and then execute command
The Next CEO of Stack OverflowWindows Explorer “Command Prompt Here”How to handle command-line arguments in PowerShellCopy-Item problem with destinationPowerShell says “execution of scripts is disabled on this system.”Powershell save directory path from ls search?Running a command on each directory in a list using PowerShellcheck if file in folder already exist based on conditional statmentCreating subfolders with PowerShell in multiple parent foldersPowerShell 5 Copy-Item not workingGenerate commands based on dynamic number of variables in powershell
I am using this command to remove multiple files in two different directories:
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
both folders contain some zip files and sub folders which i want te remove
I need to check if those folders (folder1 and folder2) exist and not empty before executing this command. Can't figure it out :(
Any help would be appreciated.
windows powershell
add a comment |
I am using this command to remove multiple files in two different directories:
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
both folders contain some zip files and sub folders which i want te remove
I need to check if those folders (folder1 and folder2) exist and not empty before executing this command. Can't figure it out :(
Any help would be appreciated.
windows powershell
Take a look atGet-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).
– Paxz
Mar 7 at 14:28
1
useTest-Path
to see if the dir exists. do you really care if there is anything in the target dir?
– Lee_Dailey
Mar 7 at 14:28
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
If you can't useTest-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writingRemove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..
– Theo
Mar 7 at 15:01
add a comment |
I am using this command to remove multiple files in two different directories:
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
both folders contain some zip files and sub folders which i want te remove
I need to check if those folders (folder1 and folder2) exist and not empty before executing this command. Can't figure it out :(
Any help would be appreciated.
windows powershell
I am using this command to remove multiple files in two different directories:
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
both folders contain some zip files and sub folders which i want te remove
I need to check if those folders (folder1 and folder2) exist and not empty before executing this command. Can't figure it out :(
Any help would be appreciated.
windows powershell
windows powershell
asked Mar 7 at 14:25
MarvelousMarvelous
82
82
Take a look atGet-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).
– Paxz
Mar 7 at 14:28
1
useTest-Path
to see if the dir exists. do you really care if there is anything in the target dir?
– Lee_Dailey
Mar 7 at 14:28
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
If you can't useTest-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writingRemove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..
– Theo
Mar 7 at 15:01
add a comment |
Take a look atGet-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).
– Paxz
Mar 7 at 14:28
1
useTest-Path
to see if the dir exists. do you really care if there is anything in the target dir?
– Lee_Dailey
Mar 7 at 14:28
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
If you can't useTest-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writingRemove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..
– Theo
Mar 7 at 15:01
Take a look at
Get-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).– Paxz
Mar 7 at 14:28
Take a look at
Get-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).– Paxz
Mar 7 at 14:28
1
1
use
Test-Path
to see if the dir exists. do you really care if there is anything in the target dir?– Lee_Dailey
Mar 7 at 14:28
use
Test-Path
to see if the dir exists. do you really care if there is anything in the target dir?– Lee_Dailey
Mar 7 at 14:28
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
If you can't use
Test-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writing Remove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..– Theo
Mar 7 at 15:01
If you can't use
Test-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writing Remove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..– Theo
Mar 7 at 15:01
add a comment |
2 Answers
2
active
oldest
votes
If you want to check multiple conditions with an if
then -and
the results:
if ((Test-Path 'C:tmpfolder1*') -and
(Test-Path 'C:tmpfolder2*') )
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
else
"not all conditions met."
An explicit Test-Path
for the folders isn't neccessary as it is implied with items in the folders.
Thanks. it works.
– Marvelous
Mar 11 at 13:08
add a comment |
I suggest using the command "test-path", and then using a | (a pipe) to output a true or false value for proceeding to executing the command that you are using to delete a directory.
add a comment |
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%2f55046132%2fcheck-if-multiple-directories-exist-in-powershell-and-then-execute-command%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want to check multiple conditions with an if
then -and
the results:
if ((Test-Path 'C:tmpfolder1*') -and
(Test-Path 'C:tmpfolder2*') )
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
else
"not all conditions met."
An explicit Test-Path
for the folders isn't neccessary as it is implied with items in the folders.
Thanks. it works.
– Marvelous
Mar 11 at 13:08
add a comment |
If you want to check multiple conditions with an if
then -and
the results:
if ((Test-Path 'C:tmpfolder1*') -and
(Test-Path 'C:tmpfolder2*') )
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
else
"not all conditions met."
An explicit Test-Path
for the folders isn't neccessary as it is implied with items in the folders.
Thanks. it works.
– Marvelous
Mar 11 at 13:08
add a comment |
If you want to check multiple conditions with an if
then -and
the results:
if ((Test-Path 'C:tmpfolder1*') -and
(Test-Path 'C:tmpfolder2*') )
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
else
"not all conditions met."
An explicit Test-Path
for the folders isn't neccessary as it is implied with items in the folders.
If you want to check multiple conditions with an if
then -and
the results:
if ((Test-Path 'C:tmpfolder1*') -and
(Test-Path 'C:tmpfolder2*') )
Remove-Item -path c:tmpfolder1*, c:tmpfolder1* -Force -Recurse
else
"not all conditions met."
An explicit Test-Path
for the folders isn't neccessary as it is implied with items in the folders.
answered Mar 7 at 15:30
LotPingsLotPings
20k61633
20k61633
Thanks. it works.
– Marvelous
Mar 11 at 13:08
add a comment |
Thanks. it works.
– Marvelous
Mar 11 at 13:08
Thanks. it works.
– Marvelous
Mar 11 at 13:08
Thanks. it works.
– Marvelous
Mar 11 at 13:08
add a comment |
I suggest using the command "test-path", and then using a | (a pipe) to output a true or false value for proceeding to executing the command that you are using to delete a directory.
add a comment |
I suggest using the command "test-path", and then using a | (a pipe) to output a true or false value for proceeding to executing the command that you are using to delete a directory.
add a comment |
I suggest using the command "test-path", and then using a | (a pipe) to output a true or false value for proceeding to executing the command that you are using to delete a directory.
I suggest using the command "test-path", and then using a | (a pipe) to output a true or false value for proceeding to executing the command that you are using to delete a directory.
answered Mar 7 at 14:38
Rohan ThakkarRohan Thakkar
11
11
add a comment |
add a comment |
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%2f55046132%2fcheck-if-multiple-directories-exist-in-powershell-and-then-execute-command%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
Take a look at
Get-ChildItem
(docs.microsoft.com/en-us/powershell/module/…).– Paxz
Mar 7 at 14:28
1
use
Test-Path
to see if the dir exists. do you really care if there is anything in the target dir?– Lee_Dailey
Mar 7 at 14:28
@Lee_Dailey i am running this in ansible playbook so if the directory not exists the task will fail.
– Marvelous
Mar 7 at 14:33
so you cannot use test-path inside the script? ///// you really ought to add that info to your OP - it seems to be an important part of the problem ... [grin]
– Lee_Dailey
Mar 7 at 14:43
If you can't use
Test-Path
for some reason I can't think of, you could simply ignore errors on folders that do not exist by writingRemove-Item -path c:tmpfolder1*, c:tmpDoesNotExist* -Force -Recurse -ErrorAction SilentlyContinue
. Of course this will also hide errors when there are files in there you may not delete because of lack of permissions..– Theo
Mar 7 at 15:01