Copy file with square brackets [ ] in the filename and use * wildcard

In this situation, you have to use double-backticks with single quotes in order to escape the brackets. You can also use quadruple backticks when you use double quoted strings. So the fixed line of code is: Copy-item -Path $FSG\$SW\0.RoomView.Notes\starter\’“[RoomView“] Versions explained*.pdf’ -Destination $FSG\$containerFolder\$rootFolder\’Fusion Server’\ Another good resource on file paths and wired characters etc. is … Read more

List of all unicode’s open/close brackets?

There is a plain-text database of information about every Unicode character available from the Unicode Consortium; the format is described in Unicode Annex #44. The primary information is contained in UnicodeData.txt. Open and close punctuation characters are denoted with Ps (punctuation start) and Pe (punctuation end) in the General_Category field (the third field, delimited by … Read more