Skip to content

Commit bba1c5e

Browse files
committed
Added Path_GetTempFileName article
1 parent f4e6250 commit bba1c5e

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_GetTempFileName
2+
3+
`Path_GetTempFileName` creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.
4+
5+
```csharp
6+
Path_GetTempFileName ()
7+
RETURNS NVARCHAR (4000)
8+
```
9+
10+
## Returns
11+
12+
The full path of the temporary file.
13+
14+
## Example
15+
16+
```csharp
17+
SELECT SQLNET::Path_GetTempFileName()
18+
```

docs2/pages/documentations/path/path.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ Performs operations on string instances that contain file or directory path info
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]()|
1515
| [Path_GetRandomFileName()](/path-get-random-file-name) | Returns a random folder name or file name. | [Try it]()|
16+
| [Path_GetTempFileName()](/path-get-temp-file-name) | Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file. | [Try it]()|

0 commit comments

Comments
 (0)