mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
29 lines
531 B
Markdown
29 lines
531 B
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 文件夹上传
|
|
en-US: Upload directory
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
支持上传一个文件夹里的所有文件。
|
|
|
|
## en-US
|
|
|
|
You can select and upload a whole directory.
|
|
|
|
```tsx
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
import { Button, Upload } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<Upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" directory>
|
|
<Button icon={<UploadOutlined />}>Upload Directory</Button>
|
|
</Upload>
|
|
);
|
|
|
|
export default App;
|
|
```
|