Skip to content

Commit f4e6250

Browse files
committed
Added Path_GetRandomFileName article
1 parent dd8ebcd commit f4e6250

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Path_GetRandomFileName
2+
3+
`Path_GetRandomFileName` returns a random folder name or file name.
4+
5+
```csharp
6+
Path_GetRandomFileName ()
7+
RETURNS NVARCHAR (4000)
8+
```
9+
10+
## Returns
11+
12+
A random folder name or file name.
13+
14+
## Example
15+
16+
```csharp
17+
SELECT SQLNET::Path_GetRandomFileName()
18+
```

docs2/pages/documentations/path/path.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ Performs operations on string instances that contain file or directory path info
1212
| [Path_GetFileNameWithoutExtension(path)](/path-get-file-name-without-extension) | Returns the file name and extension of the specified path string without the extension. | [Try it]()|
1313
| [Path_GetFullPath(path)](/path-get-full-path) | Returns the absolute path for the specified path string. | [Try it]()|
1414
| [Path_GetPathRoot(path)](/path-get-path-root) | Returns the root directory information of the specified path. | [Try it]()|
15+
| [Path_GetRandomFileName()](/path-get-random-file-name) | Returns a random folder name or file name. | [Try it]()|

0 commit comments

Comments
 (0)