mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-25 15:29:37 -05:00
Added return codes for delete_file() and rename_file() for file.hpp
This commit is contained in:
parent
459b8efc52
commit
e00d91e1d2
@ -197,12 +197,12 @@ std::vector<std::filesystem::path> scan_root_directories(const std::filesystem::
|
|||||||
return directory_list;
|
return directory_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
void delete_file(const std::filesystem::path& file_path) {
|
uint32_t delete_file(const std::filesystem::path& file_path) {
|
||||||
f_unlink(reinterpret_cast<const TCHAR*>(file_path.c_str()));
|
return f_unlink(reinterpret_cast<const TCHAR*>(file_path.c_str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void rename_file(const std::filesystem::path& file_path, const std::filesystem::path& new_name) {
|
uint32_t rename_file(const std::filesystem::path& file_path, const std::filesystem::path& new_name) {
|
||||||
f_rename(reinterpret_cast<const TCHAR*>(file_path.c_str()), reinterpret_cast<const TCHAR*>(new_name.c_str()));
|
return f_rename(reinterpret_cast<const TCHAR*>(file_path.c_str()), reinterpret_cast<const TCHAR*>(new_name.c_str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
FATTimestamp file_created_date(const std::filesystem::path& file_path) {
|
FATTimestamp file_created_date(const std::filesystem::path& file_path) {
|
||||||
|
@ -238,8 +238,8 @@ struct FATTimestamp {
|
|||||||
uint16_t FAT_time;
|
uint16_t FAT_time;
|
||||||
};
|
};
|
||||||
|
|
||||||
void delete_file(const std::filesystem::path& file_path);
|
uint32_t delete_file(const std::filesystem::path& file_path);
|
||||||
void rename_file(const std::filesystem::path& file_path, const std::filesystem::path& new_name);
|
uint32_t rename_file(const std::filesystem::path& file_path, const std::filesystem::path& new_name);
|
||||||
FATTimestamp file_created_date(const std::filesystem::path& file_path);
|
FATTimestamp file_created_date(const std::filesystem::path& file_path);
|
||||||
uint32_t make_new_directory(const std::filesystem::path& dir_path);
|
uint32_t make_new_directory(const std::filesystem::path& dir_path);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user