Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MoveFile across network? 1

Status
Not open for further replies.

Japhy1

Technical User
Apr 19, 2007
7
US
Hi all,

I'm looking for a similar function to ::MoveFile([src],[dest]) except I'm trying to move the file from one computer to another over a network link.

I'm aware that on its own ::MoveFile doesn't support this. Does anyone know an alternative? Specifically, I'm interested in one-and-done moves rather than a copy/delete method.

Thanks in advance.
 
solved my own problem.

used

::MoveFileEx([src],[dest],MOVEFILE_COPY_ALLOWED);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top