copying on ntfs

This is a discussion about copying on ntfs in the Everything New Technology category; hi, is it possible to backup folders on ntfs partitions with their ntfs and sharing permission settings?

Everything New Technology 1823 This topic was started by ,


data/avatar/default/avatar10.webp

90 Posts
Location -
Joined 2002-11-01
hi,
is it possible to backup folders on ntfs partitions with their ntfs and sharing permission settings?

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.

Responses to this topic


data/avatar/default/avatar24.webp

3 Posts
Location -
Joined 2002-11-06
What product were you planning on using.
 
I know that all the Veritas products do that exact thing.
 
-R

data/avatar/default/avatar10.webp

90 Posts
Location -
Joined 2002-11-01
OP
i am not sure which product can do it,
but my requirement is to copy files from 1 ntfs partition to another without losing all its ntfs permissions and sharing permissions.

data/avatar/default/avatar19.webp

3857 Posts
Location -
Joined 2000-03-29
I didn't see anything about it not supporting partitions, so I went ahead and tried it on my workstation and it works fine. The only "quirk" about it is that when I went from "D:\test" and copied that to "E:\", it only copied the *contents* of the test folder and not the folder itself. However, if you make a folder on the new partition and copy to that, it will not only copy over the contents but it will apply the ACLs from your source directory to the target directory.
 
So, the command looked like this:
 

Code:
C:\Documents and Settings\clutch>xcopy d:\test "e:\new folder" /e /k /o
 
And resulted in this:
 

Code:
D:\test\test.txtD:\test\tada\New Text Document.txt2 File(s) copied
 
It then changed the ACLs on "E:\new folder" to match those of "D:\test", and the subdirectories of "tada" and "another test" were both copied and retained their own ACLs (which had inheritance removed, as you tend to see that in larger deployments). So, was this what you were looking for? It also worked when I copied from D:\ to C:\, where D:\ is the first partition of a 100GB ATA drive and C:\ is the 70GB partition of a RAID 0 SCSI stripe set.