Subversion Repositories Kolibri OS

Rev

Rev 5962 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5962 Rev 6251
1
BDVK file_info_count;
1
BDVK file_info_count;
2
int file_count_copy;
2
int file_count_copy;
3
 
3
 
4
void DirFileCount(dword way)
4
void DirFileCount(dword way)
5
{
5
{
6
	dword dirbuf, fcount, i, filename;
6
	dword dirbuf, fcount, i, filename;
7
	dword cur_file;
7
	dword cur_file;
8
	if (isdir(way))
8
	if (dir_exists(way))
9
	{
9
	{
10
		cur_file = malloc(4096);
10
		cur_file = malloc(4096);
11
		// In the process of recursive descent, memory must be allocated dynamically, because the static memory -> was a bug !!! But unfortunately pass away to sacrifice speed.
11
		// In the process of recursive descent, memory must be allocated dynamically, because the static memory -> was a bug !!! But unfortunately pass away to sacrifice speed.
12
		GetDir(#dirbuf, #fcount, way, DIRS_ONLYREAL);
12
		GetDir(#dirbuf, #fcount, way, DIRS_ONLYREAL);
13
		filename = dirbuf+72;
13
		filename = dirbuf+72;
14
		for (i=0; i
14
		for (i=0; i
15
		{
15
		{
16
			filename += 304;
16
			filename += 304;
17
			sprintf(cur_file,"%s/%s",way,filename);
17
			sprintf(cur_file,"%s/%s",way,filename);
18
			
18
			
19
			if (TestBit(ESDWORD[filename-40], 4) )
19
			if (TestBit(ESDWORD[filename-40], 4) )
20
			{
20
			{
21
				file_count_copy++;
21
				file_count_copy++;
22
				DirFileCount(cur_file);
22
				DirFileCount(cur_file);
23
			}
23
			}
24
			else
24
			else
25
			{
25
			{
26
				file_count_copy++;
26
				file_count_copy++;
27
			}
27
			}
28
		}
28
		}
29
		free(cur_file);
29
		free(cur_file);
30
	}
30
	}
31
}
31
}