Displaying 5 results from an estimated 5 matches for "nouchg".
2003 Sep 08
6
No nonodump...
I'm not sure where else to ask about this, so please excuse me if this is
the wrong forum. In trying to remove a 'nodump' flag on a directory with the
'chflags' command I have noticed that the 'nonodump' flag does not function.
I see an open PR for the problem:
o [2003/01/09] i386/46912 johan chflags nonodump fails
I was wondering when this might be dealt with? Else is
2008 Apr 14
0
[PATCH] xattrs not set on locked files that already exist on target
...Test attribute" $src/locked_file
$xattr -s test_xattr.temp "Temp attribute" $src/locked_file
chflags uchg $src/locked_file
## First backup
printf "### Initial backup ###\n\n"
"$rsync" -vaX --fileflags --force-change $src/ $tgt/
## Change the source file
chflags nouchg $src/locked_file
$xattr -s test_xattr "Modified attribute" $src/locked_file
$xattr -d test_xattr.temp $src/locked_file
chflags uchg $src/locked_file
## Second backup
printf "\n### Second backup ###\n\n"
"$rsync" -vaX --fileflags --force-change $src/ $tgt/
# Cleanup...
2008 Jun 25
2
DO NOT REPLY [Bug 5565] New: xattrs not set on locked files that already exist on target
...Test attribute" $src/locked_file
$xattr -s test_xattr.temp "Temp attribute" $src/locked_file
chflags uchg $src/locked_file
## First backup
printf "### Initial backup ###\n\n"
"$rsync" -vaX --fileflags --force-change $src/ $tgt/
## Change the source file
chflags nouchg $src/locked_file
$xattr -s test_xattr "Modified attribute" $src/locked_file
$xattr -d test_xattr.temp $src/locked_file
chflags uchg $src/locked_file
## Second backup
printf "\n### Second backup ###\n\n"
"$rsync" -vaX --fileflags --force-change $src/ $tgt/
# Cleanup...
2016 Apr 16
0
How to delete Locked files in Mac
The command:
system("chflags -R nouchg /path/to/your/directory")
... should unlock your files recursively in the directory. Then proceed with
file.remove()
B.
On Apr 16, 2016, at 3:09 PM, Christofer Bogaso <bogaso.christofer at gmail.com> wrote:
> Hi,
>
> I am looking for some R code, which will delete all fi...
2016 Apr 16
2
How to delete Locked files in Mac
Hi,
I am looking for some R code, which will delete all files in a Folder
that contains both Locked and Unlocked files. There are many,
therefore i would like to delete all files programmatically in one go.
I used following code :
## "SS" is the Folder name including entire path which contains Locked
and Unlocked files.
file.remove(file.path(ss, list.files(ss)))
[1] FALSE
Warning