create a Batch file

superway

New Member
Hello,

Can anyone help me this question?
I would like to create a Batch file to save my testing data from (C:) drive to network. Would you please show me step by step ?

Thanks in advanced

CVN
 

wellhellothere

New Member
I suspect the best way to do this would be to save the data and copy it using Xcopy (for example) to your Network. I wouldn't know how to do this off the top of my head, but try googling 'batch file to copy data'
 

Dngrsone

VIP Member
You create a text file using Notepad or somesuch similar (assuming you are using Windows here), and then you enter your command-line commands, such as:

Code:
xcopy C:\Users\Brian\data Z:\BriansData\

That's the simplest way, of course, you would want to use the correct file locations, etc.
 
Top