com3dian commited on
Commit
ca45513
·
1 Parent(s): fda22ce

fix file upload

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -6,6 +6,7 @@ from grobidmonkey import reader
6
 
7
  def save_uploaded_file(uploaded_file):
8
  file_path = os.path.join("uploads", uploaded_file.name)
 
9
  with open(file_path, "wb") as f:
10
  f.write(uploaded_file.getbuffer())
11
  return file_path # Return the file path as a string
 
6
 
7
  def save_uploaded_file(uploaded_file):
8
  file_path = os.path.join("uploads", uploaded_file.name)
9
+ os.makedirs("uploads", exist_ok=True) # Create 'uploads' directory if it doesn't exist
10
  with open(file_path, "wb") as f:
11
  f.write(uploaded_file.getbuffer())
12
  return file_path # Return the file path as a string