> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LoadFromFolder Method of the FRDocument Object

This method loads the contents of the [FRDocument](/fine-reader/engine/api-reference/document-related-objects/frdocument) object from the specified folder, where it should have previously been saved by the [SaveToFolder](/fine-reader/engine/api-reference/document-related-objects/frdocument/savetofolder-method) method.

<Warning>
  Use this method to load the documents saved only by ABBYY FineReader Engine 12. If you want to load the documents saved by the previously supported versions of ABBYY FineReader Engine, use the [ConvertFromOldVersion](/fine-reader/engine/api-reference/document-related-objects/frdocument/convertfromoldversion-method) method instead.
</Warning>

## Syntax

### C++

```cpp theme={null}
HRESULT LoadFromFolder( BSTR Path );
```

### C\#

```csharp theme={null}
void LoadFromFolder( string Path );
```

### Visual Basic .NET

```vb theme={null}
Sub LoadFromFolder(Path As String)
```

## Parameters

Path

\[in] This variable contains the full path to the folder to load document from.

## Return values

This method has no specific return values. It returns the [standard return values of ABBYY FineReader Engine functions](/fine-reader/engine/api-reference/return-codes).

## Remarks

* Some methods may work differently for the original document and the document loaded from folder as only the latest state of the document is saved to folder, the history of changes is not kept.
* This method does not report any events to the listeners attached to the IConnectionPointContainer interface of the FRDocument object.

## See also

[FRDocument](/fine-reader/engine/api-reference/document-related-objects/frdocument)
