Skip to content

Commit 6633b0c

Browse files
committed
Added Path_GetTempPath article
1 parent bba1c5e commit 6633b0c

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_GetTempPath
2+
3+
`Path_GetTempPath` returns the path of the current user's temporary folder.
4+
5+
```csharp
6+
Path_GetTempPath ()
7+
RETURNS NVARCHAR (4000)
8+
```
9+
10+
## Returns
11+
12+
The path to the temporary folder, ending with a backslash.
13+
14+
## Example
15+
16+
```csharp
17+
SELECT SQLNET::Path_GetTempPath()
18+
```

docs2/pages/documentations/path/path.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ Performs operations on string instances that contain file or directory path info
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]()|
1616
| [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]()|
17+
| [Path_GetTempPath()](/path-get-temp-path) | Returns the path of the current user's temporary folder. | [Try it]()|

0 commit comments

Comments
 (0)