This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define input and output directories | |
$input = "C:\Users\John\input" | |
$output = "C:\Users\John\output" | |
# Ensure the output directory exists | |
if (-not (Test-Path -Path $output)) { | |
New-Item -ItemType Directory -Path $output | |
} | |
# Get full paths (to avoid relative path confusion) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] | |
public class CascadeDeleteAttribute : Attribute { } |