Can we get Remote system files by using OpenFileDialog control in C#.Net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DKn
    New Member
    • Aug 2007
    • 53

    Can we get Remote system files by using OpenFileDialog control in C#.Net

    Hi,
    How to get the Files from Remote system by using OpenFileDialog control in C#.Net windows application?

    Actually i am trying to do Software upgradation for a remote system by using Win32_Product. For this i need to give the Patch location by using OpenFileDialog Control.. how to do this...

    Thanks in advance..
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    OpenFileDialog uses the file system, so if you have filesystem access to the remote files (SMB/network shares) you can get at them

    i.e. \\server\somesh arename\someSub Directory\filen ame.tmp


    If you can type the location in the Run box from the start menu, you can get to it from the OpenFileDialog

    Comment

    Working...