ant-design/components/upload/demo/directory.md
二货机器人 64b905e9bd
chore: Update @ant-design/icons deps (#19979)
* update icons deps

* update all icon ref

* fix lint

* update snapshot
2019-11-28 12:34:33 +08:00

489 B

order title
6
zh-CN en-US
文件夹上传 Upload directory

zh-CN

支持上传一个文件夹里的所有文件。

en-US

You can select and upload a whole directory.

import { Upload, Button } from 'antd';
import { UploadOutlined } from '@ant-design/icons';

ReactDOM.render(
  <Upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" directory>
    <Button>
      <UploadOutlined /> Upload Directory
    </Button>
  </Upload>,
  mountNode,
);