1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/file.R
\name{file_chown}
\alias{file_chown}
\title{Change owner or group of a file}
\usage{
file_chown(path, user_id = NULL, group_id = NULL)
}
\arguments{
\item{path}{A character vector of one or more paths.}
\item{user_id}{The user id of the new owner, specified as a numeric ID or
name. The R process must be privileged to change this.}
\item{group_id}{The group id of the new owner, specified as a numeric ID or
name.}
}
\description{
Change owner or group of a file
}
|