Tagged Questions
The get-childitem tag has no wiki summary.
5
votes
2answers
341 views
Powershell Get-ChildItem progress question
So, I've got a set of directories 00-99 in a folder. Each of those directories has 100 subdirectories, 00-99. Each of those subdirectories has thousands of images.
What I'm attempting to do is ...
5
votes
1answer
333 views
How to write a list sorted lexicographically in a grid listed by column?
I have the result of Get-ChildItem, and I want to iterate over these, and display their names. By default if I simply use Write-Host then I get it listed out along the row like this:
PerfLogs ...
4
votes
4answers
171 views
How can Get-ChildItem be tested for no results (zero files)?
I'm stumped here on what seems to be a simple problem; so sorry for any bone-headed-ness over here.
I have script that cleans up defunct backup files. After identifying the files I loop over and ...
4
votes
2answers
431 views
How to write a Powershell function to get directories?
Using Powershell I can get the directories with the following command:
Get-ChildItem -Path $path -Include "obj" -Recurse | `
Where-Object { $_.PSIsContainer }
I would prefer to write a function ...
4
votes
4answers
1k views
Confused with -Include parameter of the Get-ChildItem cmdlet
From documentation:
-Include
Retrieves only the specified items.
The value of this parameter qualifies
the Path parameter. Enter a path
element or pattern, such as "*.txt".
Wildcards ...
3
votes
4answers
477 views
Combine the results of two distinct Get-ChildItem calls into single variable to do the same processing on them
I'm trying to write a powershell script to build a list of files, from several directories, then after all directories have been added to the main list, I'd like to do the same processing on all ...
3
votes
1answer
240 views
Powershell: Why does (gci c:\ddd).count on an Empty folder not return 0
Why does (gci c:\ddd).count on an Empty folder not return 0 but "nothing"
I just get an Error "You cannot call a method on a null-valued expression." When my count-condition does not match.
What do ...
2
votes
1answer
79 views
Get-ChildItem not listing files on Win Server 2003 but works fine on XP
I am trying to return a list of files based on a filter of cash_st_export*.txt but it doesn't work! If I run gci *.dll on an XP workstation in the default Powershell working directory it works fine.
...
2
votes
3answers
2k views
PowerShell Scripting - Get-ChildItem
I'm just learning PowerShell and I've written a script that will be used for archiving log files from a server. I'm in pretty good shape with everything but the recursiveness or not of ...
1
vote
1answer
148 views
Combine get-ChildItem with ACL powershell
Im looking for some help on information on files using Power shell, we have got most of when we need apart from the owner information.
the code below returns a list of directories that are older then ...
1
vote
1answer
526 views
PowerShell: Subdirectory listing to a txt-file
Today I started scripting in Windows PowerShell - so please excuse my "dumbness"...
I want to create txt-Files with the name of the subfolders of each "rootfolder" on drive G:. On G:\ I have the ...
1
vote
1answer
591 views
Powershell, ftp, get-childitem
Little new to powershell. I am trying to locate a get-childitem like command that will work on an ftp site.
Here is some psuedo-code:
$target = "c:\file.txt"
$username = "username"
$password = ...
1
vote
1answer
128 views
Passing directory contents as a single line to an executable in Powershell
I have a binary executable that takes a list of file paths as arguments, e.g.,
C:\Tool.exe C:\Files\File1.txt C:\Files\File2.txt
I would like to call this tool from Powershell. The question is, ...
0
votes
1answer
47 views
Powershell Error Trap for Get-ChildItem -Filter and Robocopy (ErrorAction)
I'm drafting a powershell script to manually backup some DC's. The backups need to be moved from one folder to another and I am using Get-ChildItem -Filter "Backup*" to select the backup files, then ...
0
votes
2answers
29 views
powershell script to get size of “itune(s)” folders on our server
I'm still new to PowerShell and trying to figure the best way to get the size of individual Itunes folders on our server. There are multiple folders and they are all located in the user profiles. ...
0
votes
1answer
129 views
Powershell script for deleting files and folders of specific criteria
I'm new to PowerShell and am trying to write a script that will search for:
1. folders with specific names.
2. files with specific extensions while
3. excluding certain directories from the search.
...
0
votes
2answers
231 views
Is there a Powershell Get-Childitem timeout property?
I am trying to use the GCI cmdlet to get information on many remote computers, some of which are sometimes turned off or unresponsive. Is there a way I can specify a timeout property for get-childitem ...
0
votes
1answer
1k views
Copy files where lastwritetime -ge 3/26/2010 9:00pm with Powershell
I need to copy files in one directory to another directory where the lastwritetime is greater than or equal to 3/26/2010 9:00pm. I'm using:
Get-ChildItem C:\pstest\hlstore\folder1\data | ...
0
votes
2answers
2k views
Powershell Get-ChildItem -Include/-Exclude doesn't filter if passed as an arg to a function
Having a problem getting a filter argument to Get-ChildItem in a function
The following works fine and displays a whole list of files:
c:\temp\Get-ChildItem -Include *deleteme*.txt -Recurse
Now ...