Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@[COLOR=#008080]echo[/color][COLOR=#804040][b] off[/b][/color]
[COLOR=#008080]echo[/color][COLOR=#ff00ff] Appending files to .\result\big.txt[/color]
[COLOR=#804040][b]for[/b][/color] [COLOR=#6a5acd]%%[/color]i in (.\*.txt) do (
[COLOR=#008080]echo[/color][COLOR=#ff00ff] appending: [/color][COLOR=#6a5acd]%%[/color][COLOR=#ff00ff]i[/color]
[COLOR=#008080]type[/color] [COLOR=#6a5acd]%%[/color]i[COLOR=#804040][b] >> [/b][/color].\result\big.txt
)
[COLOR=#008080]echo[/color][COLOR=#ff00ff] Done.[/color]
It would be not problem to pass to the script your path as a command line argument.2009luca said:... sorry me, but i'm in vb6
... and i need to substituite .\ with my path c:\mydir\?