Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 1
- Downvoting Members
- 3
0 Endorsements
Ranked #107.71K
1 Posted Topic
If your running on WINDOWS then: use this as a mover: #include <fstream> #include <iostream> #include <stdio.h> using namespace std; int main () { ofstream myfile; myfile.open("mover.bat"); if this is on XP use copy command myfile << "move originalfilethatyouwanttomove thedirectoryyouwanttomoveitto /Y"; ifstream prog; prog.open("mover.bat"); system("pause"); } .BAT is a file …
The End.
luigi10011