* @brief Return path component from full path. * @param [in] fullpath Full path to split. * @return Path without filename. */
| 728 | * @return Path without filename. |
| 729 | */ |
| 730 | String GetPathOnly(const String& fullpath) |
| 731 | { |
| 732 | if (fullpath.empty()) return _T(""); |
| 733 | String spath; |
| 734 | SplitFilename(fullpath, &spath, 0, 0); |
| 735 | return spath; |
| 736 | } |
| 737 | |
| 738 | bool IsURL(const String& abspath) |
| 739 | { |