Spaces:
Sleeping
Sleeping
import streamlit as st | |
import os | |
x = st.slider('Select a value') | |
st.write(x, 'squared is', x * x) | |
path = './tempDir' | |
# Check if the directory already exists | |
if not os.path.exists(path): | |
os.mkdir(path) | |
st.write(f"Directory '{path}' created") | |
else: | |
st.write(f"Directory '{path}' already exists") | |
uploaded_file = st.file_uploader("Upload File") | |
if uploaded_file is not None: | |
file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type} | |
st.write(file_details) | |
with open(os.path.join("tempDir",uploaded_file.name),"wb") as f: | |
f.write(uploaded_file.getbuffer()) | |
st.success("Saved File") | |
# Specify the directory path | |
directory_path = 'path/to/directory' | |
# List all files in directory and subdirectories | |
files = [] | |
for root, dirs, file_names in os.walk(path): | |
for file_name in file_names: | |
files.append(os.path.join(root, file_name)) | |
st.write(files) | |