PathIsDirectory determines if the provided path is a directory.
(path string)
| 93 | |
| 94 | // PathIsDirectory determines if the provided path is a directory. |
| 95 | func PathIsDirectory(path string) bool { |
| 96 | return pathIsDirectory(windows.StringToUTF16Ptr(path)) |
| 97 | } |
| 98 | |
| 99 | // GetMappedFile checks whether the specified address is within a memory-mapped file in the address |
| 100 | // space of the specified process. If so, the function returns the name of the memory-mapped file. |
no test coverage detected