Skip to content

Instantly share code, notes, and snippets.

@aspose-cloud-kb
Last active April 14, 2024 14:23
using System;
using System.IO;
using Aspose.Words.Cloud.Sdk;
using Aspose.Words.Cloud.Sdk.Model.Requests;
namespace WordsSample.Words
{
public class WordProcessing
{
public void CreateWordFile()
{
try
{
var apiClient = new Configuration();
apiClient.ClientSecret = "Secret";
apiClient.ClientId = "ClientId";
//Create SDK object
WordsApi wordsApi = new WordsApi(apiClient);
string localPath = @"";
string fileName = "SampleCreated.doc";
var createDocumentRequest = new CreateDocumentRequest(fileName);
var createTask = wordsApi.CreateDocument(createDocumentRequest);
var createResponse = createTask.Result;
var downloadfileTask = wordsApi.DownloadFile(new DownloadFileRequest(createResponse.Document.FileName));
var outputFileStream = downloadfileTask.Result;
outputFileStream.Position = 0;
using (var fileStream = File.Create(localPath + createResponse.Document.FileName))
{
outputFileStream.Seek(0, SeekOrigin.Begin);
outputFileStream.CopyTo(fileStream);
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment