* Copyright (c) 2021 Huawei Device Co., Ltd.
*
* HDF is dual licensed: you can use it either under the terms of
* the GPL, or the BSD license, at your option.
* See the LICENSE file in the root of this repository for complete details.
*/
#ifndef HC_GEN_FILE_H
#define HC_GEN_FILE_H
#include <string>
namespace OHOS {
namespace Hardware {
namespace Util {
class File {
public:
static std::string AbsPath(const std::string &path);
static std::string StripSuffix(std::string path);
static std::string GetDir(std::string path);
static std::string FileNameBase(const std::string &path);
};
}
}
}
#endif