You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Path_GetDirectoryName` returns the directory information for the specified path string.
4
+
5
+
```csharp
6
+
Path_GetDirectoryName (
7
+
@pathNVARCHAR (4000)
8
+
)
9
+
RETURNSNVARCHAR (4000)
10
+
```
11
+
12
+
## Parameters
13
+
14
+
-**path**: The path of a file or directory.
15
+
16
+
## Returns
17
+
18
+
- Directory information for `path`, or `null` if path denotes a root directory or is `null`. Returns Empty if `path` does not contain directory information.
0 commit comments