Skip to content

Commit 5b5753b

Browse files
committed
Added Path_GetFullPath article
1 parent e637877 commit 5b5753b

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Path_GetFullPath
2+
3+
`Path_GetFullPath` returns the absolute path for the specified path string.
4+
5+
```csharp
6+
Path_GetFullPath (
7+
@path NVARCHAR (4000)
8+
)
9+
RETURNS NVARCHAR (4000)
10+
```
11+
12+
## Parameters
13+
14+
- **path**: The file or directory for which to obtain absolute path information.
15+
16+
## Returns
17+
18+
The fully qualified location of `path`.
19+
20+
## Example
21+
22+
```csharp
23+
SELECT SQLNET::Path_GetFullPath('MyTest.txt')
24+
```

docs2/pages/documentations/path/path.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ Performs operations on string instances that contain file or directory path info
1010
| [Path_GetExtension(path)](/path-get-extension) | Returns the extension of the specified path string. | [Try it]()|
1111
| [Path_GetFileName(path)](/path-get-file-name) | Returns the file name and extension of the specified path string. | [Try it]()|
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]()|
13+
| [Path_GetFullPath(path)](/path-get-full-path) | Returns the absolute path for the specified path string. | [Try it]()|

0 commit comments

Comments
 (0)