user85511
user85511

Reputation: 533

create a folder in a networked system from another system

i want to save a jpeg file from one system to another system which is connected through network.its in a windows application.my target system's name is "abc".how can i do this ?if anyone knows please help me.thank you.

Upvotes: 0

Views: 1590

Answers (2)

RageZ
RageZ

Reputation: 27323

any file function should also work on network environment if you have sufficient permissions

Imports System.IO
Directory.CreateDirectory("\\\\192.168.0.1\\share\\dir")

Upvotes: 0

Darin Dimitrov
Darin Dimitrov

Reputation: 1039548

Provided you have the sufficient permissions you can do this:

System.IO.Directory.CreateDirectory("\\share\NewFolder")

Upvotes: 2

Related Questions