> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/de/apps/components/inputs/upload.md).

# Upload

Die UDUpload-Komponente wird verwendet, um Dateien in Universal Apps hochzuladen. Sie können die von Benutzern hochgeladenen Dateien verarbeiten. Sie erhalten die Daten der Datei, einen Dateinamen und den Dateityp, sofern dieser vom Webbrowser ermittelt werden kann.

Diese Komponente funktioniert mit [UDForm](/powershell-universal/de/apps/components/inputs/form.md) und [UDStepper](/powershell-universal/de/apps/components/navigation/stepper.md).

## Hochladen einer Datei

{% hint style="warning" %}
Der Upload unterstützt nur Dateien mit einer Größe von bis zu 2 GB.
{% endhint %}

Lädt eine Datei hoch und zeigt den Inhalt über einen Toast an.

```powershell
New-UDUpload -OnUpload {
    Show-UDToast $Body
} -Text 'Upload'
```

Der Rumpf des `OnUpload`-Skriptblocks ist eine JSON-Zeichenfolge im folgenden Format.

```javascript
{
  data: "base64 encoded string of data",
  name: "file name of the file uploaded",
  type: "file type as determined by the browser"
}
```

Bei `$EventData` handelt es sich um ein Objekt mit der folgenden Struktur.

```csharp
public class Upload
{
    public string Name { get; set; }
    public string FileName { get; set; }
    public DateTime TimeStamp { get; set; }
    public string ContentType { get; set; }
    public string Type => ContentType;
}
```

## Hochladen einer Datei mit einem Formular

Lädt eine Datei als Teil eines UDForm hoch.

```powershell
New-UDForm -Content {
    New-UDUpload -Id 'myFile' -Text 'Upload File'
} -OnSubmit {
    Show-UDToast $Body 
}
```

Der Rumpf des `OnSubmit`-Skriptblocks ist derselbe, den Sie bei jedem Formular sehen, und die Datei ist als eines der Felder im Formular enthalten.

## Beispiel: Hochladen einer Datei und Speichern im temporären Verzeichnis

Dieses Beispiel ermöglicht es einem Benutzer, eine Datei hochzuladen. Sobald die Datei hochgeladen ist, wird sie im temporären Verzeichnis gespeichert.

```powershell
New-UDUpload -Text 'Upload Image' -OnUpload {
    $Data = $Body | ConvertFrom-Json 
    $bytes = [System.Convert]::FromBase64String($Data.Data)
    [System.IO.File]::WriteAllBytes("$env:temp\$($Data.Name)", $bytes)
}
```

## API

[**New-UDUpload**](/powershell-universal/de/powershell-befehle/new-udupload.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/powershell-universal/de/apps/components/inputs/upload.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
