OrifjonKenjayev commited on
Commit
ff95f5c
·
verified ·
1 Parent(s): 65f7231

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -13
app.py DELETED
@@ -1,13 +0,0 @@
1
- import os
2
-
3
- # Create a directory named 'uploads' if it doesn't exist
4
- folder_name = "uploads"
5
- os.makedirs(folder_name, exist_ok=True)
6
-
7
- print(f"✅ Folder '{folder_name}' created successfully!")
8
-
9
- # Save a test file inside the folder
10
- with open(os.path.join(folder_name, "test.txt"), "w") as f:
11
- f.write("Hello, Hugging Face!")
12
-
13
- print("✅ Test file created inside the folder!")