提前进行输入路径检查,路径拼接换成 os.path.join

This commit is contained in:
xmimu
2024-01-22 00:53:18 +08:00
parent 48da30c4af
commit 0810d765d8
3 changed files with 12 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ def slice(inp,opt_root,threshold,min_length,min_interval,hop_size,max_sil_kept,_
if os.path.isfile(inp):
input=[inp]
elif os.path.isdir(inp):
input=["%s/%s"%(inp,name)for name in sorted(list(os.listdir(inp)))]
input=[os.path.join(inp, name) for name in sorted(list(os.listdir(inp)))]
else:
return "输入路径存在但既不是文件也不是文件夹"
slicer = Slicer(