windows - Script to list the files of a folder and export it to a text document -


i wondering if knew of way folders, files , sub-folders of location (such c:\users\username) , export text document on network share (such \server\share\document.txt).

thank help!

from command line (or use batch file if you're going need lot):

dir c:\users\username > \\server\share\document.txt 

that should trick


Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -