| 111 | static Attributes& GetAttributes(const char* path, Attributes& attributes) { return GetAttributes(path, strlen(path),attributes); } |
| 112 | |
| 113 | static UInt32 GetSize(Exception& ex,const char* path, UInt32 defaultValue=0) { return GetSize(ex, path, strlen(path), defaultValue); } |
| 114 | static UInt32 GetSize(Exception& ex, const std::string& path, UInt32 defaultValue=0) { return GetSize(ex, path.data(), path.size(), defaultValue); } |
| 115 | static Time& GetLastModified(Exception& ex,const std::string& path, Time& time) { return GetLastModified(ex, path.data(),path.size(), time); } |
| 116 | static Time& GetLastModified(Exception& ex, const char* path, Time& time) { return GetLastModified(ex, path,strlen(path), time); } |