This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资源工作流程
版本控制
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
材质和着色器
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Animations-Related Classes
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
VR-Related Classes
创建内容
内容优化
材质
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Unigine::File Class

Header: #include <UnigineStreams.h>
Inherits from: Stream

This class allows you to write and read data into files.

File is a higher-level abstraction over any file or chunk of data, such as:

Example#

The example below creates an Xml and prints all added data to the console.

Source code (C++)
#include "AppWorldLogic.h"
#include <UnigineConsole.h>

using namespace Unigine;

String my_file_read(FilePtr file)
{
	Log::message("\nFile name is %s\n", file->getName());
	Log::message("File size is %d bytes\n", file->getSize());
	return file->readString();
}

void my_file_write(FilePtr file, const char *str)
{
	file->writeString(str);
}

int AppWorldLogic::init()
{

	FilePtr file = File::create();

	// write file
	file->open("api_file.txt", "wb");
	if (file->isOpened())
	{
		my_file_write(file, "Message from the file");
		file->close();
	}

	// read file
	file->open("api_file.txt", "rb");
	if (file->isOpened())
	{
		String data = my_file_read(file);
		Log::message("\n%s\n", data.get());
		file->close();
	}

	// show console
	Console::setActive(1);

	return 1;
}

See Also#

  • C++ API sample located in the folder <UnigineSDK>/source/samples/Api/Systems/FileSample

File Class

Members


static FilePtr create ( ) #

Default constructor.

static FilePtr create ( const char * name, const char * mode ) #

Constructor.

Arguments

  • const char * name - File name.
  • const char * mode - Access mode (see open()).

int getc ( ) #

Reads the next character from the file.

Return value

Single character read from the opened file.

const char * getName ( ) #

Returns a name of the opened file.

Return value

File name.

size_t getSize ( ) #

Returns the size of the opened file in bytes.

Return value

File size in bytes.

int close ( ) #

Closes a file for any operation.

Return value

Returns 1 if the file is closed successfully; otherwise, 0.

int eof ( ) #

Tests for end-of-file on a file descriptor.

Return value

1 if it is the end of file; 0 otherwise.

int flush ( ) #

Forces to write of all buffered data to the file.

Return value

1 if the data is written successfully; otherwise, 0.

int open ( const char * name, const char * mode ) #

Opens a file with a given access mode: rb to open file for reading; wb to create a new file.
  • r - Open for reading only. The stream is positioned at the beginning of the file.
  • r+ - Open for reading and writing. The stream is positioned at the beginning of the file.
  • w - Truncate file to zero length or create file for writing. The stream is positioned at the beginning of the file.
  • w+ - Open for reading and writing. The file is created if it does not exist, otherwise it is truncated to zero length. The stream is positioned at the beginning of the file.
  • a - Open for appending (writing at end of file). The file is created if it does not exist. The stream is positioned at the end of the file.
  • a+ - Open for reading and appending (writing at end of file). The file is created if it does not exist. The initial file position for reading is at the beginning of the file, but output is always appended to the end of the file.
  • b - For binary files. Otherwise, the file is deemed a text file, and Windows replaces \n with \n\r in text files.

Arguments

  • const char * name - Name of the file to open.
  • const char * mode - Access mode.

Return value

Returns 1 if the file is opened (or created, if the wb access mode is specified) successfully; otherwise, 0.

int seekCur ( size_t offset ) #

Sets an offset of the file position indicator relative to its current position.

Arguments

  • size_t offset - Offset of the file position indicator from the current position, in bytes.

Return value

Returns 1 if the file position indicator offset is set successfully; otherwise, 0.

int seekEnd ( size_t offset ) #

Sets an offset of the file position indicator relative to the end of the file.

Arguments

  • size_t offset - File position indicator offset from the end of the file in bytes.

Return value

Returns 1 if the file position indicator offset is set successfully; otherwise, 0.

int seekSet ( size_t offset ) #

Sets an offset of the file position indicator relatively to the start of the file.

Arguments

  • size_t offset - Offset of the file position indicator from the start of the file, in bytes.

Return value

1 if the offset has been set successfully; otherwise, 0.

size_t tell ( ) #

Returns the current offset of the file position indicator.

Return value

Offset in bytes from the beginning of the file.
Last update: 2023-11-29
Build: ()