CreateFile

bool CreateFile(nType);

Creates a new file. The type of the file which will be created needs to be set.

Parameters

NameTypeDescription
nTypeintThe type of the file to be created set as a hexadecimal integer for the .Net code or docx, xlsx, pptx, or pdf for the .docbuilder script file (see OFFICESTUDIO_FILE_XXX values).

Example

.Net

string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
var doctype = (int)OfficeFileTypes.Document.DOCX;
oBuilder.CreateFile(doctype);
CDocBuilder.Destroy();

.docbuilder

builder.CreateFile("docx")

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).