mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
*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:
parent
755d38cba8
commit
03fbb14c4d
1 changed files with 3 additions and 3 deletions
|
|
@ -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("");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue