Click here to Skip to main content
15,889,808 members
Please Sign up or sign in to vote.
3.80/5 (3 votes)
See more:
How to access remote file directories. I want to access remote file directories without sharing
I just want to use ip address of the system only.

[Edit from non-solution]
actually m wanna to build up an application like teamviewer..and that's why i need to access the remote file system on the basis of ip address.
[/Edit]
Posted
Updated 17-Dec-13 19:24pm
v2
Comments
lukeer 16-Dec-13 8:26am    
Please, don't cross-post[^].

You can't.
For the very good reason that if you could, so could everyone else, and security would go right out the window.
 
Share this answer
 
Comments
agent_kruger 18-Dec-13 9:57am    
i also want to build same application but just for transfering files. Can somebody show how to use TCP to transfer data.
A program "like teamviewer" always has two components, a server and a client.

The client
- displays the remote computer's UI in a window and
- transfers user interactions there.

The server
- runs on the remote machine,
- executes the user interactions it receives from the client and
- transfers UI changes to the client

Since you have to provide the server software anyways, you're free to make it comunicate in every imaginable way with the client. There's no need to get the client to "somehow" read the remote computer's file system. That is done by the server.
 
Share this answer
 
Comments
agent_kruger 18-Dec-13 9:57am    
i also want to build same application but just for transfering files. Can somebody show how to use TCP to transfer data.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900