recents: store altname.

This commit is contained in:
sorgelig
2019-12-29 08:12:29 +08:00
parent 3c119f76e9
commit 8a8645c530
5 changed files with 42 additions and 50 deletions

View File

@@ -600,6 +600,11 @@ int FileExists(const char *name)
return isPathRegularFile(name);
}
int PathIsDir(const char *name)
{
return isPathDirectory(name);
}
int FileCanWrite(const char *name)
{
sprintf(full_path, "%s/%s", getRootDir(), name);