Returns the long UNC path of the specified file's parent directory. @param p_File File path. @return UNC path of parent if file has one, otherwise its long path.
| 74 | // @return UNC path of parent if file has one, otherwise its long path. |
| 75 | // |
| 76 | std::wstring LongUNCFolderPlugin::GetPath(const std::wstring& p_File) const |
| 77 | { |
| 78 | std::wstring path(p_File); |
| 79 | InternalGetPath(path, true); |
| 80 | return path; |
| 81 | } |
| 82 | |
| 83 | // |
| 84 | // Protected constructor with custom description and help text resources. |
nothing calls this directly
no outgoing calls
no test coverage detected