-
Do you know a way to move files over a network from one machine in the network to another, I currently shell out make a net use connection put in a timer to let the drive becaome available,copy the file, then remove the drive. Yes this works but not too efficiant with so many computers on my domain.
GOT CODE... Then I would be the one smiling..
Thanks...
[email protected]
-
The FileCopy statement supports UNC paths.
Code:
FileCopy "\\computerName\sharedFolder\trash.txt", "\\anOtherComputer\anOtherShare\trash.txt"
-
What control do you use to allow the user to browse the network files. How do you get the left pane of Windows Explorer, or something similar to it? Something that will allow to browse the local computer and attaced network computers?
Thanks
-
to get the left pane of windows explorer and to show network computers in it, you'll need to use treeview control and windows network api's.