File Download
Download URL:
Download folder:
Browse
{#if downloadPath}
File will be saved as:
{downloadPath}
{/if}
{isDownloading ? 'Downloading...' : 'Download File'}
{#if downloadProgress}
Progress: {downloadProgress.percentage}%
Speed: {Math.round(downloadProgress.transferSpeed / 1024)} KB/s
{Math.round(downloadProgress.progressTotal / 1024)} KB / {Math.round(downloadProgress.total / 1024)} KB
{/if} {#if downloadResult}
{/if}
File Upload
Upload URL:
File to upload:
Browse
HTTP Method:
POST
PUT
PATCH
Choose the HTTP method for the upload request
Upload Configuration:
Method: {uploadMethod} | URL: {uploadUrl || 'Not set'}
{isUploading ? `Uploading (${uploadMethod})...` : `Upload File (${uploadMethod})`}
{#if uploadProgress}
Progress: {uploadProgress.percentage}%
Speed: {Math.round(uploadProgress.transferSpeed / 1024)} KB/s
{Math.round(uploadProgress.progressTotal / 1024)} KB / {Math.round(uploadProgress.total / 1024)} KB
{/if} {#if uploadResult}
{/if}