Untitled

 avatar
unknown
plain_text
a year ago
169 B
4
Indexable
# Check if the folder exists
if (-Not (Test-Path -Path $folderPath)) {
    # If the folder does not exist, create it
    New-Item -ItemType Directory -Path $folderPath
}
Editor is loading...
Leave a Comment