@@ -40,25 +40,21 @@ The WBFileSpec object that specifies the file C:\Sample\1.jpg for backup.
4040
4141This command creates a file specification and adds the file named "C:\Sample\1.jpg" to it.
4242
43- ### Example 2: Add a volume recursively to a backup file specification
43+ ### Example 2: Add a folder recursively to a backup file specification
4444```
45- PS C:\> $Filespec = New-WBFileSpec -FileSpec C:\Sample
46-
47- The WBFileSpec object that specifies the folder C:\Sample for backup.
45+ PS C:\> $Filespec = New-WBFileSpec -FileSpec "C:\Sample"
4846```
4947
50- This command creates a file specification and adds the contents of the " C:\Sample" folder to it.
51- Because the cmdlet does not include the ** NonRecursive* * parameter, the backup includes the contents of this folder and its subfolders.
48+ This command creates a file specification and adds the contents of the C:\Sample folder to it.
49+ Because the cmdlet does not include the * NonRecursive* parameter, the backup includes the contents of this folder and its subfolders.
5250
53- ### Example 3: Add a volume nonrecursively to a backup file specification
51+ ### Example 3: Add a folder nonrecursively to a backup file specification
5452```
55- PS C:\> $Filespec = New-WBFileSpec -FileSpec C:\Sample -NonRecursive
56-
57- The WBFileSpec object that specifies the folder C:\sample for backup non-recursively.
53+ PS C:\> $Filespec = New-WBFileSpec -FileSpec "C:\Sample" -NonRecursive
5854```
5955
60- This command creates a file specification and adds the contents of the " C:\Sample" folder to it.
61- Because the cmdlet includes the ** NonRecursive* * parameter, the backup includes the contents of this folder but not the contents of its subfolders.
56+ This command creates a file specification and adds the contents of the C:\Sample folder to it.
57+ Because the cmdlet includes the * NonRecursive* parameter, the backup includes the contents of this folder but not the contents of its subfolders.
6258
6359### Example 4: Exclude files from a backup file specification
6460```
0 commit comments