Skip to content

特殊字符进行的修正和macOS路径错误的修正 #10

Description

@danceking

download.py

music.name = music.name.replace("/", "&")
if not artist is None:
	artist = artist.replace("/", "&")
name = music.name + " - " + artist + "." + music.type

if not dirs:

	if sys.platform == "darwin":
		path1 = "cloudmusic/"
		path2 = "/cloudmusic"
		path3 = "/"
	else :
		path1 = "cloudmusic\\"
		path2 = "\\cloudmusic"
		path3 = "\\"

	dirs = path1 + name
	defalut_dirs = str(os.getcwd()) + path2
	isExist = os.path.exists(defalut_dirs)
	if not isExist:
		os.makedirs(defalut_dirs)
else :
	dirs += path3 + name

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions