473,387 Members | 1,493 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

File.Copy

Hi I would like to use File.Copy with UNC paths. I have seen this problem
reported by others as well. Can i use File.Copy with UNC paths. ie., i would
like to copy a file from one of the folder to a shared folder. eg.,

File.Copy(srcPath, "\\machinename\\folder)

This is giving an error "Could not find part of the path
\\machinename\\folder"

Is this feature supported? if yes please can anyone let me knwo how to
achieve it.

Thanks
Jul 9 '08 #1
3 5102


"Ganesha" <Ga*****@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
Hi I would like to use File.Copy with UNC paths. I have seen this problem
reported by others as well. Can i use File.Copy with UNC paths. ie., i
would
like to copy a file from one of the folder to a shared folder. eg.,

File.Copy(srcPath, "\\machinename\\folder)

This is giving an error "Could not find part of the path
\\machinename\\folder"

Is this feature supported? if yes please can anyone let me knwo how to
achieve it.

Thanks
Try escaping a double-backslash before machinename:

File.Copy(srcPath, "\\\\machinename\\folder");

- OR -

File.Copy(srcPath, @"\\machinename\folder");

I haven't tested to ensure that File.Copy can copy to a network folder via a
UNC path, so this may not be your solution, but as it stands by looking,
that could be the problem.

HTH,
Mythran
Jul 9 '08 #2
Hi Ganesha.
The problem is probably that you need to provide credentials to the current
thread before you can access the share.
if you run the program as a user who has access to the server share it
should work

in fact, if the current user has logged on with remote credentials
succesfully this session it should also work.

but if that's not an option you may need to drop into p/invoke to get
windows to manage the logon context for you.. and that's something I'd have
to look up myself.

Leon

"Mythran" <My*****@community.nospamwrote in message
news:33**********************************@microsof t.com...
>

"Ganesha" <Ga*****@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
>Hi I would like to use File.Copy with UNC paths. I have seen this problem
reported by others as well. Can i use File.Copy with UNC paths. ie., i
would
like to copy a file from one of the folder to a shared folder. eg.,

File.Copy(srcPath, "\\machinename\\folder)

This is giving an error "Could not find part of the path
\\machinename\\folder"

Is this feature supported? if yes please can anyone let me knwo how to
achieve it.

Thanks

Try escaping a double-backslash before machinename:

File.Copy(srcPath, "\\\\machinename\\folder");

- OR -

File.Copy(srcPath, @"\\machinename\folder");

I haven't tested to ensure that File.Copy can copy to a network folder via
a UNC path, so this may not be your solution, but as it stands by looking,
that could be the problem.

HTH,
Mythran

Jul 9 '08 #3
I have an impersonation class on my blog which you call a function passing
the impersonation info (doman, username, password) and it raises an event in
which you can do the work while impersonated. When the event handler
completes, it undoes the impersonation. Its a handy tool to stop you having
to look that stuff up and do the Dll imports every time.
Let me know what you think.

--
Ciaran O''Donnell
http://wannabedeveloper.spaces.live.com
"Leon Jollans" wrote:
Hi Ganesha.
The problem is probably that you need to provide credentials to the current
thread before you can access the share.
if you run the program as a user who has access to the server share it
should work

in fact, if the current user has logged on with remote credentials
succesfully this session it should also work.

but if that's not an option you may need to drop into p/invoke to get
windows to manage the logon context for you.. and that's something I'd have
to look up myself.

Leon

"Mythran" <My*****@community.nospamwrote in message
news:33**********************************@microsof t.com...


"Ganesha" <Ga*****@discussions.microsoft.comwrote in message
news:83**********************************@microsof t.com...
Hi I would like to use File.Copy with UNC paths. I have seen this problem
reported by others as well. Can i use File.Copy with UNC paths. ie., i
would
like to copy a file from one of the folder to a shared folder. eg.,

File.Copy(srcPath, "\\machinename\\folder)

This is giving an error "Could not find part of the path
\\machinename\\folder"

Is this feature supported? if yes please can anyone let me knwo how to
achieve it.

Thanks
Try escaping a double-backslash before machinename:

File.Copy(srcPath, "\\\\machinename\\folder");

- OR -

File.Copy(srcPath, @"\\machinename\folder");

I haven't tested to ensure that File.Copy can copy to a network folder via
a UNC path, so this may not be your solution, but as it stands by looking,
that could be the problem.

HTH,
Mythran
Jul 10 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: BoonHead, The Lost Philosopher | last post by:
I think the .NET framework is great! It's nice, clean and logical; in contradiction to the old Microsoft. It only saddens me that the new Microsoft still doesn't under stand there own...
0
by: SeanR | last post by:
I have a function to copare two files. It will first copy the original file form a different server to a local temp path and then compare that version to a version that has been restored form tape....
2
by: RitaG | last post by:
Hi. In a VB.Net program I use File.Copy to copy some zipped (and text) files from one server to another. I'm required by management to do a file compare after the copy has completed. Is the...
5
by: DraguVaso | last post by:
Hi, I need a SECURE way to copy parts of a file. I'm having files which contains a whole bunch of records. In one 'fysical' file I'm having one or more logical files. What I need to do is to...
8
by: luis molina Micasoft | last post by:
it seems that when i do file.copy the svchost.exe is hanged, i mean if i make 40 threads of file.copy , 40 copys of files at same time the system is going down and stop responding, this is when i'm...
8
by: Sarah | last post by:
I need to access some data on a server. I can access it directly using UNC (i.e. \\ComputerName\ShareName\Path\FileName) or using a mapped network drive resource (S:\Path\FileName). Here is my...
1
by: Rachel McConnell | last post by:
Hi, I am trying to import data using COPY, from a file containing thirty or so COPY commands each with 0 or more rows of data. Reason, I have a small data set I want to include into a database...
3
by: maheshkadam | last post by:
Hi friends I am new to perl so please guide me. I have one application which created backup log file every day.But it appends that file so you can see logs for different day in one file only. ...
1
by: =?Utf-8?B?UmFkZW5rb19aZWM=?= | last post by:
I am using standard File.Copy(source,dest,true) method in C# and I have problem with copying large number of files. Here is my code: foreach (FileInfo file in files) {...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.