Spaces:
Running
Running
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}") |