本文整理汇总了C++中FileSpecifier::GetError方法的典型用法代码示例。如果您正苦于以下问题:C++ FileSpecifier::GetError方法的具体用法?C++ FileSpecifier::GetError怎么用?C++ FileSpecifier::GetError使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileSpecifier
的用法示例。
在下文中一共展示了FileSpecifier::GetError方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CopyContents
// Copy file contents
bool FileSpecifier::CopyContents(FileSpecifier &source_name)
{
err = 0;
OpenedFile src, dst;
if (source_name.Open(src)) {
Delete();
if (Open(dst, true)) {
const int BUFFER_SIZE = 1024;
uint8 buffer[BUFFER_SIZE];
int32 length = 0;
src.GetLength(length);
while (length && err == 0) {
int32 count = length > BUFFER_SIZE ? BUFFER_SIZE : length;
if (src.Read(count, buffer)) {
if (!dst.Write(count, buffer))
err = dst.GetError();
} else
err = src.GetError();
length -= count;
}
}
} else
err = source_name.GetError();
if (err)
Delete();
return err == 0;
}
示例2: dialog_export
static void dialog_export(void *arg)
{
dialog *d = static_cast<dialog *>(arg);
w_saves *saves_w = static_cast<w_saves *>(d->get_widget_by_id(iDIALOG_SAVES_W));
QuickSave sel = saves_w->selected_save();
std::string name = sel.name;
if (!name.length())
name = sel.level_name;
FileSpecifier dstFile;
dstFile.SetToSavedGamesDir();
dstFile += "unused.sgaA";
char prompt[256];
if (dstFile.WriteDialog(_typecode_savegame, getcstr(prompt, strPROMPTS, _save_replay_prompt), utf8_to_mac_roman(name).c_str())) {
dstFile.CopyContents(sel.save_file);
int error = dstFile.GetError();
if (error)
alert_user(infoError, strERRORS, fileError, error);
}
}