<#
.SYNOPSIS
Gets and displays files from a folder
.DESCRIPTION
This script uses the getfiles method to get and display files in a folder
.NOTES
File Name : Get-Files.ps1
Author : Thomas Lee - tfl@psp.co.uk
Requires : PowerShell V2
.LINK
http://www.pshscripts.blogspot.com
.EXAMPLE
PSH [C:\foo]: .\get-files.PS1
Files in C:\Foo\test
C:\foo\test\div.xml
C:\foo\test\foo.txt
C:\foo\test\foo1.txt
C:\foo\test\foo1.xls
C:\foo\test\foo1.xlsx
C:\foo\test\foo2.txt
C:\foo\test\shows (Autosaved).xlsx
C:\foo\test\shows.xlsx
C:\foo\test\tfl1.xlsx
C:\foo\test\xlsx1.xlsx
C:\foo\test\xlsx2.xlsx
Files in C:\Foo\test\*.txt
C:\foo\test\foo.txt
C:\foo\test\foo1.txt
C:\foo\test\foo2.txt
Files in C:\Foo\test /s
C:\foo\test\div.xml
C:\foo\test\foo.txt
C:\foo\test\foo1.txt
C:\foo\test\foo1.xls
C:\foo\test\foo1.xlsx
C:\foo\test\foo2.txt
C:\foo\test\shows (Autosaved).xlsx
C:\foo\test\shows.xlsx
C:\foo\test\tfl1.xlsx
C:\foo\test\xlsx1.xlsx
C:\foo\test\xlsx2.xlsx
#>
##
# Start of Script
##
# Get all files in C:\Foo\test
'Files in C:\Foo\test'
[System.IO.Directory]::GetFiles('C:\foo\test')
''
# Get all files in c:\foo\test\*.txt
'Files in C:\Foo\test\*.txt'
[System.IO.Directory]::GetFiles('C:\foo\test', '*.txt')
''
# Get all files in c:\foo\test\*.* /s
'Files in C:\Foo\test /s'
$s = [System.IO.SearchOption]::AllDirectories
[System.IO.Directory]::GetFiles('C:\foo\test\', '*.*',$s)
# End of Script
This blog contains PowerShell scripts, more PowerShell scripts and still more PowerShell scripts. Occasionally you may see some organisational posts.
Showing posts with label system.io.searchoptions. Show all posts
Showing posts with label system.io.searchoptions. Show all posts
Wednesday, 29 October 2008
Get-Files.ps1
Subscribe to:
Posts (Atom)