Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Creat file failed(Downloading error) #844

Closed
hahahathr opened this issue Feb 8, 2022 · 5 comments
Closed

[BUG] Creat file failed(Downloading error) #844

hahahathr opened this issue Feb 8, 2022 · 5 comments
Labels
bug Something isn't working

Comments

@hahahathr
Copy link

hahahathr commented Feb 8, 2022

Which tool

tidal-dl

Version

2022.02.07.1

Platform

Andriod

Bug description

Some track can't download

Screenshot
Screenshot_20220208-121550_Termux

@hahahathr hahahathr added the bug Something isn't working label Feb 8, 2022
@anjoku
Copy link

anjoku commented Feb 9, 2022

Hi,

Does the file name contain * ? That will not work. These characters is not permitted.

@anjoku
Copy link

anjoku commented Feb 10, 2022

This is not a bug, this is Androis.
You can try to do this: Create or rename a file in your system that contains an * that not work.

@ailtone
Copy link

ailtone commented Feb 14, 2022

The same just happened here: the band name *NSYNC has * in the file name, and the app can't save with this name. All invalid characters for filename and folders should be replaced or supressed by the app before writing in the disk.

image

@anjoku
Copy link

anjoku commented Feb 14, 2022

  • is not a valid character in Filesystem.
    Maybe that could be the developer Yaronzz.
    Instead of a * another character is written.

@TyraVex
Copy link

TyraVex commented Mar 3, 2022

My solution :

# /data/data/com.termux/files/usr/lib/python3.10/site-packages/tidal_dl/util.py
# line 355
path = path.replace("/sdcard/Download/Shared/", "")
path = path.replace("/", "")
path = path.replace("\\", "")
path = path.replace("*", "")
path = "/sdcard/Download/Shared/" + path

I do not advice to use this before aknowledging what it does and how shitty it is

@yaronzz yaronzz closed this as completed in 8503a62 Mar 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants