Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9688 → Rev 9689

/programs/cmm/lib/fs.h
256,19 → 256,16
else return bdvk.sizelo;
}
 
/*
// This implementation of dir_exists() is faster than
// previous but here virtual folders like
// '/' and '/tmp' are not recognised as FOLDERS
// by GetFileInfo() => BDVK.isfolder attribute :(
 
:bool dir_exists(dword fpath)
/* This implementation of dir_exists() is faster than
previous but here virtual folders like
'/' and '/tmp' are not recognised as FOLDERS
by GetFileInfo() => BDVK.isfolder attribute :( */
bool real_dir_exists(dword fpath)
{
BDVK fpath_atr;
if (GetFileInfo(fpath, #fpath_atr) != 0) return false;
return fpath_atr.isfolder;
}
*/
 
:bool file_exists(dword fpath)
{