wdc-utils/set_file_type.cpp
2017-03-06 00:39:50 -05:00

21 lines
394 B
C++

#include <string>
#include <stdint.h>
#include "finder_info_helper.h"
int set_file_type(const std::string &path, uint16_t file_type, uint32_t aux_type) {
finder_info_helper fi;
bool ok;
std::error_code ec;
ok = fi.open(path, ec, finder_info_helper::read_write);
if (!ok) return -1;
fi.set_prodos_file_type(file_type, aux_type);
ok = fi.write(ec);
if (!ok) return -1;
return 0;
}