Given a single SMB network share (for example, \\server\\SHARED_FOLDER), I want to recursively list all the files, including those in the subdirectories (like find(1)).

I would prefer to do it in Linux, but I also accept Windows answers.

link|improve this question
.. assuming without mounting it? – slhck May 31 '11 at 8:47
feedback

1 Answer

up vote 1 down vote accepted

I would use:

sudo smbmount //server/SHARED_FOLDER /local/folder
cd /local/folder
ls -R

Obviously, add your preferred ls flags into the command (so, for me, I would use ls -lahR, but that's a personal preference).

link|improve this answer
Thanks, I didn't know about smbmount. – Danilo Piazzalunga May 31 '11 at 9:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.