Subversion Repositories Kolibri OS

Rev

Rev 6735 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6735 Rev 6930
Line 198... Line 198...
198
}
198
}
Line 199... Line 199...
199
 
199
 
200
:char dir_exists(dword fpath)
200
:char dir_exists(dword fpath)
201
{
201
{
202
	BDVK fpath_atr;
202
	BDVK fpath_atr;
203
	GetFileInfo(fpath, #fpath_atr);
203
	if (GetFileInfo(fpath, #fpath_atr) != 0) return false; 
204
	return fpath_atr.isfolder;
204
	return fpath_atr.isfolder;
205
}
205
}
206
:char file_exists(dword fpath)
206
:char file_exists(dword fpath)
207
{
207
{