You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GenXdev.FileSystem.psd1
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
RootModule='GenXdev.FileSystem.psm1'
8
8
9
9
# Version number of this module.
10
-
ModuleVersion='1.102.2025'
10
+
ModuleVersion='1.104.2025'
11
11
12
12
# ID used to uniquely identify this module
13
13
GUID='2f62080f-0483-4421-8497-b3d433b65171'
@@ -34,7 +34,19 @@
34
34
ClrVersion='9.0.1'
35
35
36
36
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no Cmdlets to export.
|[AssurePester](#AssurePester)||This function checks if Pester module is installed. If not found, it attempts toinstall it from the PowerShell Gallery and imports it into the current session.|
75
75
|[Expand-Path](#Expand-Path)| ep | Expands any given file reference to a full pathname, with respect to the user'scurrent directory. Can optionally assure that directories or files exist. |
76
76
|[Find-DuplicateFiles](#Find-DuplicateFiles)| fdf | Takes an array of directory paths, searches each path recursively for files,then groups files by name and optionally by size and modified date. Returnsgroups containing two or more duplicate files. |
77
77
|[Find-Item](#Find-Item)| l | Searches for file- or directory- names, optionally performs a regular expressionmatch within the content of each matched file. |
@@ -96,13 +96,24 @@ Update-Module
96
96
AssurePester
97
97
````
98
98
99
+
### SYNOPSIS
100
+
Ensures that Pester testing framework is installed and available.
101
+
99
102
### SYNTAX
100
103
````PowerShell
101
-
AssurePester
104
+
AssurePester [<CommonParameters>]
102
105
````
103
106
107
+
### DESCRIPTION
108
+
This function checks if Pester module is installed. If not found, it attempts to
109
+
install it from the PowerShell Gallery and imports it into the current session.
110
+
104
111
### PARAMETERS
105
-
None
112
+
<CommonParameters>
113
+
This cmdlet supports the common parameters: Verbose, Debug,
0 commit comments