CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Jul 2009
    Posts
    105

    Get files from other computers on wireless network

    Hi, i am working on a new program and i need to know what i would need to learn in order to be able to make a program that can explore and take files from another computer on your wireless network. Also i need to know how hard it would be to make this. Like, easy, medium, hard, extreme, don't bother!

    the reason for the difficulty is to know if i am in over my head or not.

    Any help is greatly appreciated.
    Last edited by Alexz003; December 17th, 2009 at 09:31 AM.

  2. #2
    Join Date
    Jan 2009
    Posts
    1,689

    Re: Get files from other computers on wireless network

    I'm fairly certain that Finder is open source, take a look at it's source. It's not C++, but Cocoa is very similar... at least from a design standpoint.

    Obviously, you will not be able to access private files and folders, no matter what you do.

  3. #3
    Join Date
    Apr 2005
    Posts
    107

    Re: Get files from other computers on wireless network

    You don't have to make anything.
    Just use your operating system.
    Done.

  4. #4
    Join Date
    Jul 2009
    Posts
    105

    Re: Get files from other computers on wireless network

    Quote Originally Posted by ninja9578 View Post
    I'm fairly certain that Finder is open source, take a look at it's source. It's not C++, but Cocoa is very similar... at least from a design standpoint.

    Obviously, you will not be able to access private files and folders, no matter what you do.
    I am talking about for other computers that allow me to access them. I want to, for example, get on a co-workers computer and get the file that i am looking for. I want it to be able to give me a list of the files on the computer. Finder if for the computer that it is on, not network computers.

    Something like teamviewer i guess but i just want it to list directories and files in them.

    Quote Originally Posted by rdrast View Post
    You don't have to make anything.
    Just use your operating system.
    Done.
    Other computers, not my computer.

  5. #5
    Join Date
    Apr 2008
    Posts
    725

    Re: Get files from other computers on wireless network

    you want to get read access of all files of any computer attached to the same wireless network, but the files aren't publicly shared? Sounds too suspicious.

  6. #6
    Join Date
    Dec 2009
    Posts
    26

    Re: Get files from other computers on wireless network

    install your program on the victim's computer (client)
    disable their firewall
    you will act as the server
    victim connects to you
    easy as pie

    you can code it using winsock
    Last edited by sufood; December 17th, 2009 at 12:59 PM.

  7. #7
    Join Date
    Jan 2009
    Posts
    1,689

    Re: Get files from other computers on wireless network

    No, Finder will show you everything on your computer and any other computer on your network. Go here:
    Finder > Preferences > Sidebar
    Check Bonjour computers

    Unless the connected computer is running windows, you can not access private files, period. If they're publicly shared you can view them, but private ones can not be viewed by anything other than the computer they're on and the user that they are associated with. Read up on how UNIX file permissions work.

    Windows has something similar, just not as secure. You SHOULDN'T be able to see private files, but depending on the UAC settings, you might be able to.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured