Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jhj0517
/
Segment-Anything-Layer-Divider
like
2
Build error
App
Files
Files
Community
a34578b
Segment-Anything-Layer-Divider
/
modules
/
ui_utils.py
jhj0517
initial commit
11d7b39
over 1 year ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
os
def
open_folder
(
folder_path
):
if
os.path.exists(folder_path):
os.system(
f"start
{folder_path}
"
)
else
:
print
(
f"The folder
{folder_path}
does not exist."
)