Untitled

Anonymous
plain_text
06/20/2024 9:17 AM
228 B
19
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