File size: 178 Bytes
27a4df8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import os

try:
    file_ls_str = ", ".join(os.listdir("raw_documents"))
except:
    file_ls_str = "NA"

st.write(f"Hello World! File list: {file_ls_str}")