mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
7fe27bbf7d
This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- LGPL-2.1-or-later : 35 License: LGPL-2.1-or-later test/agent.py test/bluezutils.py test/dbusdef.py test/example-advertisement test/example-endpoint test/example-gatt-client test/example-gatt-server test/example-player test/exchange-business-cards test/ftp-client test/get-managed-objects test/get-obex-capabilities test/list-devices test/list-folders test/map-client test/monitor-bluetooth test/opp-client test/pbap-client test/sap_client.py test/simple-endpoint test/simple-obex-agent test/simple-player test/test-adapter test/test-device test/test-discovery test/test-gatt-profile test/test-health test/test-health-sink test/test-hfp test/test-manager test/test-mesh test/test-nap test/test-network test/test-profile test/test-sap-server
41 lines
816 B
Python
Executable File
41 lines
816 B
Python
Executable File
#!/usr/bin/python
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
import sys
|
|
import dbus
|
|
|
|
|
|
def list_folder(folder):
|
|
bus = dbus.SessionBus()
|
|
client = dbus.Interface(bus.get_object("org.bluez.obex",
|
|
"/org/bluez/obex"),
|
|
"org.bluez.obex.Client")
|
|
|
|
path = client.CreateSession(sys.argv[1], { "Target": "ftp" })
|
|
|
|
ftp = dbus.Interface(bus.get_object("org.bluez.obex", path),
|
|
"org.bluez.obex.FileTransfer")
|
|
|
|
if folder:
|
|
for node in folder.split("/"):
|
|
ftp.ChangeFolder(node)
|
|
|
|
for i in ftp.ListFolder():
|
|
if i["Type"] == "folder":
|
|
print "%s/" % (i["Name"])
|
|
else:
|
|
print "%s" % (i["Name"])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) < 2:
|
|
print "Usage: %s <device> [folder]" % (sys.argv[0])
|
|
sys.exit(1)
|
|
|
|
folder = None
|
|
if len(sys.argv) == 3:
|
|
folder = sys.argv[2]
|
|
|
|
list_folder(folder)
|