1

Need suggestion to design an application

i have planned to write a c# WPF application. where i will configure all the static ip address of the servers. my application will create some log files and write to the shared folder of the corresponding servers.

How can i design my standalone application which will write the files to shared folder

user515675
  • 21
  • 1
  • 5

1 Answers1

2

You can. Just use System.IO.File.Create(@"//127.0.0.1/Share/file.txt"); You'll probably run into permission problems, this is a link to a solution.

Community
  • 1
  • 1
hcb
  • 7,889
  • 1
  • 16
  • 16