File size: 284 Bytes
8a98f14
23a665d
f6a6d6a
 
 
23a665d
 
f6a6d6a
312908f
f6a6d6a
 
 
 
23a665d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def dummy(fex):
  print(fex)
  return fex

with gr.Blocks() as demo:
  with gr.Row():
    fex1 = gr.FileExplorer(value="/content/test/untitled.txt", height=200)
    fex2 = gr.FileExplorer()
  btn=gr.Button()
  btn.click(dummy, fex1, fex2)

demo.launch(debug=True)