PoshCode Archive  Artifact [11ce1d3a96]

Artifact 11ce1d3a96cd749832c269ca20a9d2579769518f316e77d772e09f3c2fa111ce:

  • File Remove-Special-Char.ps1 — part of check-in [fdfaa15afb] at 2018-06-10 14:07:29 on branch trunk — This will recursively remove non-alphanumeric\decimal (via regex) characters from all folder and filenames. The decimals are left in tact for file extensions. (user: mjohnson size: 629)

# encoding: ascii
# api: powershell
# title: Remove Special Char
# description: This will recursively remove non-alphanumeric\decimal (via regex) characters from all folder and filenames. The decimals are left in tact for file extensions.
# version: 0.1
# author: mjohnson
# license: CC0
# x-poshcode-id: 6073
# x-archived: 2016-05-17T12:36:03
# x-published: 2016-10-30T09:31:00
#
# To replace the characters with another, modify the empty ‘ ‘) } section with your wanted word/char.
# Please use -whatif for testing.
#
gci 'c:\test\' -Recurse | % { Rename-Item $_.FullName $($_.Name -replace
	'[^\w\.]','') }