i can get my android phone bluetooth mac address .
import bluetooth
nearby_devices = bluetooth.discover_devices(lookup_names = True)
for addr, phoneName in nearby_devices:
print(addr)
it is 6C:8B:2F:CE:5B:59
Now how can i write a file into the disk j: of my android
phone(bluetooth mac is 6C:8B:2F:CE:5B:59 )?
-- https://mail.python.org/mailman/listinfo/python-list
