how to copy a file machine A into Machine B
-
Hi i have to copy a file from my machine to another machine in same network using an ip address in asp.net 1.1 using C#. how it will be done.
-
Hi i have to copy a file from my machine to another machine in same network using an ip address in asp.net 1.1 using C#. how it will be done.
It would probably be best to set up a shared folder with access between the 2 machines and go from there using standard file operations
-
Hi i have to copy a file from my machine to another machine in same network using an ip address in asp.net 1.1 using C#. how it will be done.
Bibhash Mishra wrote:
i have to copy a file from my machine to another machine in same network using an ip address in asp.net 1.1 using C#
I suppose you can run asp.net application on both machines. 1. Write a web service for the machine that will receive file. 2. On the sending machine, pick the file, convert it into byte stream. Open a TCP connection(Socket) with the receiving machine, transfer the file and close the socket. 3. The web service will receive the byte stream and will write file to disk.
-
Hi i have to copy a file from my machine to another machine in same network using an ip address in asp.net 1.1 using C#. how it will be done.
If the machines are in the same network, all you have to do is grant write permission to ASPNET user on the destination folder.