MadelineProto/docs/TD_docs/constructors/inputFileLocal.md

45 lines
707 B
Markdown
Raw Normal View History

---
title: inputFileLocal
description: File deifned by local path
---
## Constructor: inputFileLocal
[Back to constructors index](index.md)
File deifned by local path
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|path|[string](../types/string.md) | Yes|Local path to the file|
### Type: [InputFile](../types/InputFile.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inputFileLocal = ['_' => 'inputFileLocal', 'path' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inputFileLocal", "path": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputFileLocal={_='inputFileLocal', path='string'}
```