Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 632 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Batch file to copy files from one folder to another folder

#11
**xcopy.exe** is definitely your friend here.
It's built into Windows, so its cost is nothing.

Just `xcopy /s c:\source d:\target`

You'd probably want to tweak a few things; some of the options we also add include these:

- `/s/e` - recursive copy, including copying empty directories.
- `/v` - add this to verify the copy against the original. slower, but for the paranoid.
- `/h` - copy system and hidden files.
- `/k` - copy read-only attributes along with files. otherwise, all files become read-write.
- `/x` - if you care about permissions, you might want `/o` or `/x`.
- `/y` - don't prompt before overwriting existing files.
- `/z` - if you think the copy might fail and you want to restart it, use this. It places a marker on each file as it copies, so you can rerun the xcopy command to pick up from where it left off.

If you think the xcopy might fail partway through (like when you are copying over a flaky network connection), or that you have to stop it and want to continue it later, you can use `xcopy /s/z c:\source d:\target`.
Reply

#12
For **Windows** Users

1. Create **copyfile.exe** OR **copyfile.cmd** OR **copyfile.bat**

2. Add this
```js
#!AutoCopy
xcopy /s C:\folder\from C:\folder\to
```

3. Just open by double click **copyfile.exe**



OR open **cmd** type ```copyfile.bat``` press enter
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through