Functions/GenXdev.Data.KeyValueStore/Initialize-KeyValueStores.ps1
<##############################################################################
Part of PowerShell module : GenXdev.Data.KeyValueStore Original cmdlet filename : Initialize-KeyValueStores.ps1 Original author : René Vaessen / GenXdev Version : 1.300.2025 ################################################################################ Copyright (c) René Vaessen / GenXdev Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ################################################################################> ############################################################################### <# .SYNOPSIS Initializes KeyValueStore directory structure for local and OneDrive storage. .DESCRIPTION Creates directory structure for JSON-based key-value stores in two locations: 1. Local machine for immediate access ($ENV:LOCALAPPDATA\GenXdev.PowerShell\KeyValueStore\) 2. OneDrive folder for cloud synchronization The function ensures both directories exist and are properly configured. .PARAMETER DatabasePath Base directory path for key-value store JSON files. .EXAMPLE Initialize-KeyValueStores -DatabasePath "C:\MyStores" .EXAMPLE Initialize-KeyValueStores #> function Initialize-KeyValueStores { [CmdletBinding()] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '')] param( ############################################################################### [Parameter( Mandatory = $false, HelpMessage = 'Database path for key-value store data files' )] [string] $DatabasePath ############################################################################### ) begin { # use provided base path or default to local app data if ([string]::IsNullOrWhiteSpace($DatabasePath)) { $basePath = GenXdev.FileSystem\Expand-Path ` "$($ENV:LOCALAPPDATA)\GenXdev.PowerShell\KeyValueStore" ` -CreateDirectory } else { $basePath = GenXdev.FileSystem\Expand-Path $DatabasePath ` -CreateDirectory } # output verbose message showing selected base path Microsoft.PowerShell.Utility\Write-Verbose ` "Using KeyValueStore directory: $basePath" # determine the path for onedrive synchronized store directory $shadowPath = GenXdev.FileSystem\Expand-Path ` '~\Onedrive\GenXdev.PowerShell.SyncObjects\KeyValueStore' ` -CreateDirectory # output verbose message for shadow path Microsoft.PowerShell.Utility\Write-Verbose ` "Using OneDrive sync directory: $shadowPath" } process { # iterate through both directory paths to ensure they exist foreach ($storePath in @($basePath, $shadowPath)) { # create directory if it doesn't exist if (-not (Microsoft.PowerShell.Management\Test-Path -LiteralPath $storePath)) { # output verbose message about directory creation Microsoft.PowerShell.Utility\Write-Verbose ` "Creating KeyValueStore directory at: $storePath" # create directory structure $null = GenXdev.FileSystem\Expand-Path $storePath ` -CreateDirectory } # make the onedrive sync folder hidden to prevent user interference if ($storePath -eq $shadowPath) { # ensure directory exists before setting attributes if (Microsoft.PowerShell.Management\Test-Path -LiteralPath $storePath) { $folder = [System.IO.DirectoryInfo]::new($storePath) $folder.Attributes = $folder.Attributes -bor ` [System.IO.FileAttributes]::Hidden } } } } end { } } |