command: add command "listfiles"

Lists files and directories.  Supports storage plugins.
This commit is contained in:
Max Kellermann
2014-02-28 19:02:23 +01:00
parent 797bbeabeb
commit 96afa8bd2b
15 changed files with 337 additions and 55 deletions

View File

@@ -25,15 +25,15 @@ class DetachedSong;
class Client;
void
song_print_info(Client &client, const DetachedSong &song);
song_print_info(Client &client, const DetachedSong &song, bool base=false);
void
song_print_info(Client &client, const LightSong &song);
song_print_info(Client &client, const LightSong &song, bool base=false);
void
song_print_uri(Client &client, const LightSong &song);
song_print_uri(Client &client, const LightSong &song, bool base=false);
void
song_print_uri(Client &client, const DetachedSong &song);
song_print_uri(Client &client, const DetachedSong &song, bool base=false);
#endif