*Functions4U: FileBrowser problem found by Jibe

git-svn-id: svn://ultimatepp.org/upp/trunk@7485 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2014-07-04 22:22:59 +00:00
parent 755d38cba8
commit 03fbb14c4d

View file

@ -239,7 +239,7 @@ bool FolderDeleteX(const char *path, EXT_FILE_FLAGS flags) {
bool DirectoryExistsX(const char *path, EXT_FILE_FLAGS flags) {
if (!(flags & BROWSE_LINKS))
return DirectoryExists(path);
return DirectoryExists(path);
if (DirectoryExists(path))
return true;
if (!IsSymLink(path))
@ -1286,8 +1286,8 @@ bool WriteCSVFile(const String fileName, Vector<Vector <Value> > &data, char sep
#ifdef PLATFORM_POSIX
String FileRealName(const char *fileName) {
fileName = GetFullPath(fileName);
String FileRealName(const char *_fileName) {
String fileName = GetFullPath(_fileName);
FindFile ff(fileName);
if (!ff)
return String("");