VC and SharedFolder on Lan
-
Hello can anyone tell me how to access shared folders on Lan for copying something in them. Be FaithFull To Your Work.
-
Hello can anyone tell me how to access shared folders on Lan for copying something in them. Be FaithFull To Your Work.
Use the
\\server\share
convention, also known as UNC.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
Use the
\\server\share
convention, also known as UNC.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
Which class of VC6 is used for the above job , i mean getting the list of shared folders on LAN and then copying something(Daily schedule for every employee) in it.I want to do this job programmatically. Please Help. Be FaithFull To Your Work.
-
Which class of VC6 is used for the above job , i mean getting the list of shared folders on LAN and then copying something(Daily schedule for every employee) in it.I want to do this job programmatically. Please Help. Be FaithFull To Your Work.
Usman Tasleem Akshaf wrote: Which class of VC6 is used for the above job Any function or method that can handle UNC will work. Usman Tasleem Akshaf wrote: i mean getting the list of shared folders on LAN... Use the
WNetOpenEnum()
andWNetEnumResource()
pair. Usman Tasleem Akshaf wrote: ...and then copying something(Daily schedule for every employee) in it. UseCopyFile()
orSHFileOperation()
. Usman Tasleem Akshaf wrote: Be FaithFull To Your Work. BTW, there's only one 'l' in faithful, assuming it's not meant to be misspelled. :)
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
Usman Tasleem Akshaf wrote: Which class of VC6 is used for the above job Any function or method that can handle UNC will work. Usman Tasleem Akshaf wrote: i mean getting the list of shared folders on LAN... Use the
WNetOpenEnum()
andWNetEnumResource()
pair. Usman Tasleem Akshaf wrote: ...and then copying something(Daily schedule for every employee) in it. UseCopyFile()
orSHFileOperation()
. Usman Tasleem Akshaf wrote: Be FaithFull To Your Work. BTW, there's only one 'l' in faithful, assuming it's not meant to be misspelled. :)
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
do we need the ip adress or need to connect to the particualar computer and then access the shares folder or only use the above functions ddd
Have you read the documentation and the examples for the functions I mentioned?
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown