@@ -154,12 +154,12 @@ owner: owner group: group]; } #endif -+ (void)rename: (OFString*)from - to: (OFString*)to ++ (void)renameFileWithPath: (OFString*)from + toPath: (OFString*)to { #ifndef _WIN32 if (rename([from cString], [to cString])) #else if (!MoveFile([from cString], [to cString])) @@ -167,11 +167,11 @@ @throw [OFRenameFileFailedException newWithClass: self from: from to: to]; } -+ (void)delete: (OFString*)path ++ (void)deleteFileWithPath: (OFString*)path { #ifndef _WIN32 if (unlink([path cString])) #else if (!DeleteFile([path cString])) @@ -179,21 +179,21 @@ @throw [OFDeleteFileFailedException newWithClass: self path: path]; } #ifndef _WIN32 -+ (void)link: (OFString*)src - to: (OFString*)dest ++ (void)linkFileWithPath: (OFString*)src + toPath: (OFString*)dest { if (link([src cString], [dest cString]) != 0) @throw [OFLinkFailedException newWithClass: self source: src destination: dest]; } -+ (void)symlink: (OFString*)src - to: (OFString*)dest ++ (void)symlinkFileWithPath: (OFString*)src + toPath: (OFString*)dest { if (symlink([src cString], [dest cString]) != 0) @throw [OFSymlinkFailedException newWithClass: self source: src destination: dest];