sharing files(very urgent)

  • Thread starter Thread starter sreenu k via DotNetMonster.com
  • Start date Start date
S

sreenu k via DotNetMonster.com

i have one windows application.(accessing files one machine to another
machine)

and also having one shared folder in my machine and one shared folder in
others machine. so, my task is how to move files, copy to these folders.


plzzzz . if u find soluction then forward to me immeadiately .plzzz . it is
urgent .
 
Hello sreenu k via DotNetMonster.com,

string path1 = @"\\?ompName1\ShareFolder\FileName";
string path2 = @"\\?ompName2\ShareFolder\FileName";

File.Copy(path1, path2)

s> i have one windows application.(accessing files one machine to
s> another machine)
s>
s> and also having one shared folder in my machine and one shared folder
s> in others machine. so, my task is how to move files, copy to these
s> folders.
s>
s> plzzzz . if u find soluction then forward to me immeadiately .plzzz .
s> it is urgent .
s>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/members/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Back
Top