From 6991a03753db092e2e5b269ebdc898ff5cfc43a8 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Tue, 2 Sep 2003 20:14:57 +0000 Subject: Added the MakeFileExecutable() method. This method takes a filename and gives it execute access while respecting the user's umask. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8324 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FileUtilities.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/llvm/Support/FileUtilities.h') diff --git a/include/llvm/Support/FileUtilities.h b/include/llvm/Support/FileUtilities.h index 2c8eba3949..47704946c8 100644 --- a/include/llvm/Support/FileUtilities.h +++ b/include/llvm/Support/FileUtilities.h @@ -36,4 +36,19 @@ void removeFile(const std::string &Filename); /// std::string getUniqueFilename(const std::string &FilenameBase); +/// +/// Method: MakeFileExecutable() +/// +/// Description: +/// This method turns on whatever access attributes are needed to make the +/// specified file executable. +/// +/// Return value: +/// True - The operation succeeded. +/// False - The operation failed. +/// +/// Notes: +/// In case of failure, the file's access attributes are unspecified. +/// +bool MakeFileExecutable (const std::string & Filename); #endif -- cgit v1.2.3-18-g5258