I often spin up a quick python http server. Just go to the folder which has the files you want to transfer and run the following command: python3 -m http.server. This will server the folder content Serving HTTP on0.0.0.0 port 8000 (http://0.0.0.0:8000/) .... On your phone you can then browse to http://PC_IP:8000 and download what you want/need.
I often spin up a quick python http server. Just go to the folder which has the files you want to transfer and run the following command:
python3 -m http.server
. This will server the folder contentServing HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...
. On your phone you can then browse to http://PC_IP:8000 and download what you want/need.